1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
version: "3.7" services: web: image: web build: context: ./ networks: - webnet restart: unless-stopped ports: - "19009:9000" volumes: - /etc/letsencrypt/archive/blog.terminaldweller.com/:/certs/ cap_drop: - ALL environment: - SERVER_DEPLOYMENT_TYPE=deployment - SERVER_LISTEN_PORT=9000 networks: webnet: