Files
lubelog/my-docker-compose.yml
cphipps d798eff5c6
Some checks failed
Build and Push Image to Dockerhub and GHCR / build (push) Has been cancelled
Add my-docker-compose.yml
Creation
2025-05-20 19:08:32 -04:00

29 lines
611 B
YAML

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: {}