From e6b59a695e592d6d6c649cc9c11a8af1a62f3645 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 28 Jan 2021 22:24:35 +0000 Subject: [PATCH] docker-compose.yml: Update to latest dev version --- docker-compose.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 1374944..4934d3e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,26 +1,36 @@ version: "3.3" services: - snikket_web: + snikket_proxy: + container_name: snikket-proxy image: snikket/snikket-web-proxy:dev env_file: snikket.conf network_mode: host volumes: - snikket_data:/snikket - - acme_challenges:/usr/share/nginx/html/.well-known/acme-challenge + - acme_challenges:/var/www/html/.well-known/acme-challenge restart: "unless-stopped" snikket_certs: + container_name: snikket-certs image: snikket/snikket-cert-manager:dev env_file: snikket.conf volumes: - - /var/lib/snikket:/snikket + - snikket_data:/snikket - acme_challenges:/var/www/.well-known/acme-challenge restart: "unless-stopped" + snikket_portal: + container_name: snikket-portal + image: snikket/snikket-web-portal:dev + network_mode: host + env_file: snikket.conf + restart: "unless-stopped" + snikket_server: + container_name: snikket image: snikket/snikket:dev network_mode: host volumes: - - /var/lib/snikket:/snikket + - snikket_data:/snikket env_file: snikket.conf restart: "unless-stopped"