From c6980a390f55f423961d7db4e14ec93eee3f3935 Mon Sep 17 00:00:00 2001 From: Christopher Leggett Date: Sun, 21 Jun 2020 23:50:53 -0400 Subject: [PATCH] Fixed some leftovers from copy-paste. --- docs/content/doc/setup/full-docker-example.md | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/docs/content/doc/setup/full-docker-example.md b/docs/content/doc/setup/full-docker-example.md index 105ab6232..9233f765b 100644 --- a/docs/content/doc/setup/full-docker-example.md +++ b/docs/content/doc/setup/full-docker-example.md @@ -260,22 +260,15 @@ services: frontend: image: vikunja/frontend restart: unless-stopped - proxy: - image: nginx - ports: - - 80:80 - volumes: - - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro - depends_on: - - api - - frontend - restart: unless-stopped caddy: image: caddy restart: unless-stopped ports: - "80:80" - "443:443" + depends_on: + - api + - frontend volumes: - ./Caddyfile:/etc/caddy/Caddyfile:ro {{< /highlight >}}