13 lines
400 B
YAML
13 lines
400 B
YAML
services:
|
|
db:
|
|
image: postgres:16-alpine
|
|
container_name: df-appusage-db-local
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: stats_admin
|
|
POSTGRES_PASSWORD: Living-Buckshot-Tack-6Burps # <-- Hier dein Passwort setzen
|
|
POSTGRES_DB: app_insights
|
|
ports:
|
|
- "5432:5432" # Das ist wichtig für den Mac!
|
|
volumes:
|
|
- ./postgres_data:/var/lib/postgresql/data |