From d798eff5c666393a1479e25445fe19bf8e304c9a Mon Sep 17 00:00:00 2001 From: cphipps Date: Tue, 20 May 2025 19:08:32 -0400 Subject: [PATCH] Add my-docker-compose.yml Creation --- my-docker-compose.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 my-docker-compose.yml diff --git a/my-docker-compose.yml b/my-docker-compose.yml new file mode 100644 index 0000000..efdfb56 --- /dev/null +++ b/my-docker-compose.yml @@ -0,0 +1,28 @@ +services: + app: + image: ghcr.io/hargata/lubelogger:latest + build: . + restart: unless-stopped + # volumes used to keep data persistent + volumes: + - config:/App/config + - data:/App/data + - documents:/App/wwwroot/documents + - images:/App/wwwroot/images + - temp:/App/wwwroot/temp + - log:/App/log + - keys:/root/.aspnet/DataProtection-Keys + # expose port and/or use serving via traefik + ports: + - 18180:8080 + env_file: + - .env +volumes: + config: null + data: null + documents: null + images: null + temp: null + log: null + keys: null +networks: {}