add umami
This commit is contained in:
37
Docker/umami/docker-compose.yml
Normal file
37
Docker/umami/docker-compose.yml
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
version: '3'
|
||||
services:
|
||||
umami:
|
||||
image: ghcr.io/mikecao/umami:postgresql-latest
|
||||
ports:
|
||||
- "3000:3000"
|
||||
environment:
|
||||
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
||||
DATABASE_TYPE: postgresql
|
||||
HASH_SALT: L0Gc9Rda7nlt
|
||||
depends_on:
|
||||
- db
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
nginx:
|
||||
aliases:
|
||||
- umami
|
||||
|
||||
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
|
||||
- ./data/postgresql:/var/lib/postgresql/data
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
nginx:
|
||||
aliases:
|
||||
- umami-db
|
||||
|
||||
networks:
|
||||
nginx:
|
||||
external: true
|
||||
Reference in New Issue
Block a user