|
|
@ -3,6 +3,8 @@ version: "3"
|
|
|
|
services:
|
|
|
|
services:
|
|
|
|
umami:
|
|
|
|
umami:
|
|
|
|
image: ghcr.io/mikecao/umami:postgresql-latest
|
|
|
|
image: ghcr.io/mikecao/umami:postgresql-latest
|
|
|
|
|
|
|
|
container_name: umami
|
|
|
|
|
|
|
|
|
|
|
|
ports:
|
|
|
|
ports:
|
|
|
|
- "127.0.0.1:${UMAMI_PORT}:3000"
|
|
|
|
- "127.0.0.1:${UMAMI_PORT}:3000"
|
|
|
|
env_file:
|
|
|
|
env_file:
|
|
|
@ -10,8 +12,11 @@ services:
|
|
|
|
depends_on:
|
|
|
|
depends_on:
|
|
|
|
- umami_db
|
|
|
|
- umami_db
|
|
|
|
restart: always
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
|
|
|
|
umami_db:
|
|
|
|
umami_db:
|
|
|
|
image: postgres:12-alpine
|
|
|
|
image: postgres:12-alpine
|
|
|
|
|
|
|
|
container_name: umami_db
|
|
|
|
|
|
|
|
|
|
|
|
env_file:
|
|
|
|
env_file:
|
|
|
|
- ../stack.env
|
|
|
|
- ../stack.env
|
|
|
|
volumes:
|
|
|
|
volumes:
|
|
|
|