umami/docker-compose.yml
Kipras Melnikovas ae74c4f64e
feat: allow building image from docker compose
I don't know if this might have other implications (like whether or not it would default to pulling or building a newer image once you want to update),

but I found this useful when e.g. implementing a translation and the `yarn dev` thingie just didn't work, thus building the docker image right from `docker-compose build` or just `docker-compose up --build`.

Signed-off-by: Kipras Melnikovas <kipras@kipras.org>
2021-05-18 02:21:05 +03:00

25 lines
626 B
YAML

---
version: '3'
services:
umami:
image: ghcr.io/mikecao/umami:postgresql-latest
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: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
volumes:
umami-db-data: