From 00da4d2abce74987d049e88d601e824c47f719c8 Mon Sep 17 00:00:00 2001 From: Sebastian Slettebakken <43045439+sebastas@users.noreply.github.com> Date: Thu, 13 Nov 2025 04:06:04 +0100 Subject: [PATCH] feat: add example usage of docker-compose.yml to README --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..9df8695 --- /dev/null +++ b/README.md @@ -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!