From 0a88cb18e857f34b86ef2df332e90882525a02b5 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Sat, 19 Nov 2022 15:45:18 +0100 Subject: [PATCH] Add advlabdb compose file --- compose.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 compose.yml diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..29788d9 --- /dev/null +++ b/compose.yml @@ -0,0 +1,25 @@ +services: + advlabdb: + build: . + contianer_name: advlabdb + volumes: + - ~/volumes/advlabdb/data:/volumes/data:Z + - ~/volumes/advlabdb/logs:/volumes/logs:Z + environment: + - ADVLABDB_DATA_DIR=/volumes/data + - TZ=Europe/Berlin + networks: + - traefik + nginx: + image: docker.io/library/nginx:alpine + container_name: advlabdb_nginx + volumes: + - ~/volumes/advlabdb/nginx/conf.d:/etc/nginx/conf.d:Z,ro + environment: + - TZ=Europe/Berlin + networks: + - traefik + +networks: + traefik: + external: true