mirror of
https://github.com/kremalicious/umami.git
synced 2024-10-31 23:35:32 +01:00
c5d775ce72
It might be a good idea to add a restart policy to the default `docker-compose.yml` file. Either: `restart: always` or `restart: unless-stopped` Useful in case Umami crashes for some reason (see #721) This is also useful in case the server restarts, so Umami starts up again after rebooting. https://docs.docker.com/config/containers/start-containers-automatically/
27 lines
653 B
YAML
27 lines
653 B
YAML
---
|
|
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: replace-me-with-a-random-string
|
|
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:
|