From 37bd2017b01458b01bda29c7b919d36c931d47e3 Mon Sep 17 00:00:00 2001 From: rdang <41537401+rdangdev@users.noreply.github.com> Date: Fri, 21 Oct 2022 19:13:18 +1100 Subject: [PATCH] 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. --- docs/install/docker/plain/docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/install/docker/plain/docker-compose.yml b/docs/install/docker/plain/docker-compose.yml index 2a3b7c3f..c61e4688 100644 --- a/docs/install/docker/plain/docker-compose.yml +++ b/docs/install/docker/plain/docker-compose.yml @@ -13,6 +13,8 @@ services: image: vabene1111/recipes env_file: - ./.env + ports: + - 80:8080 volumes: - staticfiles:/opt/recipes/staticfiles - nginx_config:/opt/recipes/nginx/conf.d @@ -24,7 +26,6 @@ services: image: nginx:mainline-alpine restart: always ports: - - 80:80 env_file: - ./.env depends_on: