Compare commits
No commits in common. "7c181e28dcc5ed53fc53d35d56beb5765d354ca8" and "cd983a7d3feacd48e22647c53f5e58cb7990b9f1" have entirely different histories.
7c181e28dc
...
cd983a7d3f
2 changed files with 1 additions and 33 deletions
|
@ -1,32 +0,0 @@
|
||||||
services:
|
|
||||||
umami:
|
|
||||||
image: ghcr.io/umami-software/umami:postgresql-latest
|
|
||||||
ports:
|
|
||||||
- "${APP_PORT}:3000"
|
|
||||||
environment:
|
|
||||||
DATABASE_URL: postgresql://umami:umami@db:5432/umami
|
|
||||||
DATABASE_TYPE: postgresql
|
|
||||||
APP_SECRET: ${APP_SECRET}
|
|
||||||
depends_on:
|
|
||||||
db:
|
|
||||||
condition: service_healthy
|
|
||||||
restart: always
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "curl http://localhost:3000/api/heartbeat"]
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
||||||
db:
|
|
||||||
image: postgres:16-alpine
|
|
||||||
environment:
|
|
||||||
POSTGRES_DB: umami
|
|
||||||
POSTGRES_USER: umami
|
|
||||||
POSTGRES_PASSWORD: umami
|
|
||||||
volumes:
|
|
||||||
- ${ROOT_DIR}/umami-db-data:/var/lib/postgresql/data
|
|
||||||
restart: always
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
|
||||||
interval: 5s
|
|
||||||
timeout: 5s
|
|
||||||
retries: 5
|
|
|
@ -6,7 +6,7 @@ services:
|
||||||
image: vaultwarden/server:latest
|
image: vaultwarden/server:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "${APP_PORT}:80"
|
- "${SSH_PORT}:80"
|
||||||
environment:
|
environment:
|
||||||
ADMIN_TOKEN: ${ADMIN_TOKEN}
|
ADMIN_TOKEN: ${ADMIN_TOKEN}
|
||||||
WEBSOCKET_ENABLED: true
|
WEBSOCKET_ENABLED: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue