You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-compose.yml 631B

12345678910111213141516171819202122232425262728293031
  1. version: '2'
  2. services:
  3. isc-dhcp:
  4. build: ./isc-dhcp
  5. container_name: dhcp-isc-dhcp
  6. volumes:
  7. - ./data/isc-dhcp:/data
  8. network_mode: host
  9. env_file:
  10. - env
  11. tftpd:
  12. build: ./tftpd
  13. container_name: dhcp-tftpd
  14. volumes:
  15. - ./data/tftpd/tftp:/srv/tftp/
  16. network_mode: host
  17. env_file:
  18. - env
  19. apache:
  20. build: ./apache
  21. container_name: dhcp-apache
  22. volumes:
  23. - ./data/apache/files:/var/www
  24. ports:
  25. - "127.0.0.1:34030:80"
  26. env_file:
  27. - env