mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-10 08:25:23 +02:00
95 lines
2.2 KiB
YAML
95 lines
2.2 KiB
YAML
services:
|
|
dash:
|
|
image: ghcr.io/uptimekit/dash:latest
|
|
ports:
|
|
- "${DASH_PORT:-3000}:3000"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- DATABASE_URL=postgresql://postgres:postgres@db:5432/uptimekit
|
|
- CLICKHOUSE_URL=http://clickhouse:8123
|
|
- CLICKHOUSE_USER=default
|
|
- CLICKHOUSE_PASSWORD=clickhouse
|
|
- REDIS_URL=redis://redis:6379
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_started
|
|
healthcheck:
|
|
test:
|
|
[
|
|
"CMD-SHELL",
|
|
"IP=$$(hostname -i | awk '{print $$1}'); wget -qO- \"http://$$IP:3000/api/health\" >/dev/null 2>&1",
|
|
]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 12
|
|
start_period: 20s
|
|
restart: always
|
|
|
|
status-page:
|
|
image: ghcr.io/uptimekit/status-page:latest
|
|
ports:
|
|
- "${STATUS_PAGE_PORT:-3001}:3001"
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- DATABASE_URL=postgresql://postgres:postgres@db:5432/uptimekit
|
|
- CLICKHOUSE_URL=http://clickhouse:8123
|
|
- CLICKHOUSE_USER=default
|
|
- CLICKHOUSE_PASSWORD=clickhouse
|
|
- REDIS_URL=redis://redis:6379
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_started
|
|
clickhouse:
|
|
condition: service_started
|
|
dash:
|
|
condition: service_healthy
|
|
restart: always
|
|
|
|
db:
|
|
image: postgres:18-alpine
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: uptimekit
|
|
volumes:
|
|
- db_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres -d uptimekit"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 12
|
|
start_period: 10s
|
|
restart: always
|
|
|
|
redis:
|
|
image: redis:8.0-alpine
|
|
volumes:
|
|
- redis_data:/data
|
|
restart: always
|
|
|
|
clickhouse:
|
|
image: clickhouse/clickhouse-server:latest
|
|
volumes:
|
|
- clickhouse_data:/var/lib/clickhouse
|
|
environment:
|
|
CLICKHOUSE_DB: uptimekit
|
|
CLICKHOUSE_USER: default
|
|
CLICKHOUSE_PASSWORD: clickhouse
|
|
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: 1
|
|
user: "root"
|
|
ulimits:
|
|
nofile:
|
|
soft: 262144
|
|
hard: 262144
|
|
restart: always
|
|
|
|
volumes:
|
|
db_data:
|
|
clickhouse_data:
|
|
redis_data: |