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!