ports are on the wrong service
the actual webserver is running on port 8080 and on the web_recipes service, as per all the documentation. 80 will not work, at least on the latest patch.
This commit is contained in:
parent
2de8070156
commit
37bd2017b0
@ -13,6 +13,8 @@ services:
|
|||||||
image: vabene1111/recipes
|
image: vabene1111/recipes
|
||||||
env_file:
|
env_file:
|
||||||
- ./.env
|
- ./.env
|
||||||
|
ports:
|
||||||
|
- 80:8080
|
||||||
volumes:
|
volumes:
|
||||||
- staticfiles:/opt/recipes/staticfiles
|
- staticfiles:/opt/recipes/staticfiles
|
||||||
- nginx_config:/opt/recipes/nginx/conf.d
|
- nginx_config:/opt/recipes/nginx/conf.d
|
||||||
@ -24,7 +26,6 @@ services:
|
|||||||
image: nginx:mainline-alpine
|
image: nginx:mainline-alpine
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- 80:80
|
|
||||||
env_file:
|
env_file:
|
||||||
- ./.env
|
- ./.env
|
||||||
depends_on:
|
depends_on:
|
||||||
|
Loading…
Reference in New Issue
Block a user