18 lines
360 B
YAML
18 lines
360 B
YAML
services:
|
|
goatcounter:
|
|
image: baethon/goatcounter
|
|
restart: unless-stopped
|
|
container_name: goatcounter
|
|
env_file: .env
|
|
environment:
|
|
GOATCOUNTER_DOMAIN: goatcounter.hantim.net
|
|
GOATCOUNTER_EMAIL: timothykim@fastmail.fm
|
|
volumes:
|
|
- ./db:/goatcounter/db
|
|
networks:
|
|
- shared
|
|
|
|
networks:
|
|
shared:
|
|
external: true
|