You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
643 B
YAML
25 lines
643 B
YAML
6 months ago
|
version: '3'
|
||
|
services:
|
||
|
umami:
|
||
|
image: ghcr.io/umami-software/umami:postgresql-latest
|
||
|
ports:
|
||
|
- "3000:3000"
|
||
|
environment:
|
||
|
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
||
|
DATABASE_TYPE: postgresql
|
||
|
HASH_SALT: newhashsaltofchoice
|
||
|
depends_on:
|
||
|
- db
|
||
|
restart: always
|
||
|
db:
|
||
|
image: postgres:12-alpine
|
||
|
environment:
|
||
|
POSTGRES_DB: umami
|
||
|
POSTGRES_USER: umami
|
||
|
POSTGRES_PASSWORD: umami
|
||
|
volumes:
|
||
|
- ./sql/schema.postgresql.sql:/docker-entrypoint-initdb.d/schema.postgresql.sql:ro
|
||
|
- umami-db-data:/var/lib/postgresql/data
|
||
|
restart: always
|
||
|
volumes:
|
||
|
umami-db-data:
|