Files
tally-counter/README.md
Sebastian Slettebakken 00da4d2abc
All checks were successful
Build and publish Docker image / build-and-push (release) Successful in 9s
feat: add example usage of docker-compose.yml to README
2025-11-13 04:06:04 +01:00

17 lines
415 B
Markdown

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!