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
All checks were successful
Build and publish Docker image / build-and-push (release) Successful in 9s
This commit is contained in:
16
README.md
Normal file
16
README.md
Normal 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!
|
||||
Reference in New Issue
Block a user