mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
73ea516a7a
Determines which Prisma schema to use
25 lines
572 B
YAML
25 lines
572 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
umami:
|
|
build: .
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
|
DATABASE_TYPE: postgresql
|
|
HASH_SALT: replace-me-with-a-random-string
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: postgres: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
|
|
volumes:
|
|
umami-db-data:
|