feat: add example usage of docker-compose.yml to README
All checks were successful
Build and publish Docker image / build-and-push (release) Successful in 9s

This commit is contained in:
2025-11-13 04:06:04 +01:00
parent 1bc4b0fb50
commit 00da4d2abc

16
README.md Normal file
View File

@@ -0,0 +1,16 @@
Here is example usage of `docker-compose.yml`:
```yaml
service
tally-counter:
image: gitea.kanawave.net/sebastas/tally-counter:latest #this image
container_name: tally-counter
user: 2000:2000 #uid:gid
restart: unless-stopped
networks:
- proxy # traefik proxy network
volumes:
- ./tally-counter:/data # for persistant storage (db + uploads)
```
Quick and dirty setup!