Gain essential insights into your website's performance without compromising visitor privacy. This tool offers a straightforward and meaningful alternative to complex platforms like Google Analytics. It is designed to be easy to use, providing clear statistics without overwhelming you with unnecessary options.
The platform is built with a privacy-first approach, meaning it does not track users with unique identifiers or cookies, so you don't need a GDPR consent banner. Other key benefits include:
services:
db:
image: postgres:15-alpine
restart: unless-stopped
environment:
POSTGRES_USER: goatcounter
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: goatcounter
volumes:
- ./db-data:/var/lib/postgresql/data
goatcounter:
image: goatcounter/goatcounter:latest
restart: unless-stopped
depends_on:
- db
ports:
- "8080:8080"
environment:
GOATCOUNTER_DB: "postgresql://goatcounter:${DB_PASSWORD}@db/goatcounter?sslmode=disable"
GOATCOUNTER_LISTEN: ":8080"
GOATCOUNTER_TLS: "http"
volumes:
- ./app-data:/data
command: serveDB_PASSWORD=your_secure_database_passwordAuto-fetched about 24 hours ago
Auto-fetched about 24 hours ago