docker-compose.yml 358 B

123456789101112131415161718192021222324
  1. version: "3.5"
  2. services:
  3. sui:
  4. container_name: sui
  5. restart: always
  6. build:
  7. context: ./
  8. environment:
  9. - VIRTUAL_HOST=test.laserr.net
  10. networks:
  11. - nginx-proxy
  12. - public
  13. ports:
  14. - 4000:80
  15. volumes:
  16. - ./:/opt/html
  17. networks:
  18. nginx-proxy:
  19. external: true
  20. public:
  21. external:
  22. name: public