19 lines
357 B
YAML
19 lines
357 B
YAML
services:
|
|
goatcounter:
|
|
image: baethon/goatcounter
|
|
restart: unless-stopped
|
|
container_name: goatcounter
|
|
command: >-
|
|
goatcounter serve
|
|
-listen :8080
|
|
-tls none
|
|
-db sqlite3+/goatcounter/db/goatcounter.sqlite3
|
|
volumes:
|
|
- ./db:/goatcounter/db
|
|
networks:
|
|
- shared
|
|
|
|
networks:
|
|
shared:
|
|
external: true
|