switch default web container to nginx instead of (unmaintained) caddy v1

legacy-php5
Andrew Dolgov 3 years ago
parent c42c514ed1
commit c447753a50

@ -72,15 +72,15 @@ services:
- app
command: /updater.sh
web:
build: ./web
restart: unless-stopped
ports:
- ${HTTP_PORT}:2015
volumes:
- app:/var/www/html:ro
depends_on:
- app
# web:
# build: ./web
# restart: unless-stopped
# ports:
# - ${HTTP_PORT}:2015
# volumes:
# - app:/var/www/html:ro
# depends_on:
# - app
# web-ssl:
# build: ./web-ssl
@ -97,15 +97,15 @@ services:
# depends_on:
# - app
# web-nginx:
# build: ./web-nginx
# restart: unless-stopped
# ports:
# - ${HTTP_PORT}:80
# volumes:
# - app:/var/www/html:ro
# depends_on:
# - app
web-nginx:
build: ./web-nginx
restart: unless-stopped
ports:
- ${HTTP_PORT}:80
volumes:
- app:/var/www/html:ro
depends_on:
- app
volumes:
db:

Loading…
Cancel
Save