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!