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 730B

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