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.

19 line
343B

  1. services:
  2. apache-proxy:
  3. image: httpd:2.4
  4. container_name: apache-proxy
  5. restart: unless-stopped
  6. ports:
  7. - "80:80"
  8. volumes:
  9. - ./httpd.conf:/usr/local/apache2/conf/httpd.conf:ro
  10. - ./vhosts.conf:/usr/local/apache2/conf/extra/vhosts.conf:ro
  11. networks:
  12. - proxy
  13. networks:
  14. proxy:
  15. external: true

Powered by TurnKey Linux.