From 64bfae21f039a3c56d85b035c4be8e22b100e17d Mon Sep 17 00:00:00 2001 From: tobbbs <1+tobbbs@noreply.localhost> Date: Wed, 27 May 2026 09:49:03 +0200 Subject: [PATCH] Add compose.yaml --- compose.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 compose.yaml diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..670fe8d --- /dev/null +++ b/compose.yaml @@ -0,0 +1,32 @@ +services: + app: + image: ghcr.io/hargata/lubelogger:latest + build: . + restart: unless-stopped + networks: + - bragi-local + volumes: + - /opt/06_maintanance/data:/App/data + - /opt/06_maintanance/keys:/root/.aspnet/DataProtection-Keys + # ports: + # - 8082:8080 + postgres: + image: postgres:14 + restart: unless-stopped + networks: + - bragi-local + environment: + POSTGRES_USER: lubelogger + POSTGRES_PASSWORD: lubepass + POSTGRES_DB: lubelogger + volumes: + - /opt/06_maintanance/init.sql:/docker-entrypoint-initdb.d/init.sql + - /opt/06_maintanance/postgres:/var/lib/postgresql/data + - /etc/localtime:/etc/localtime:ro +volumes: + data: null + keys: null + postgres: null +networks: + bragi-local: + external: true \ No newline at end of file