25 lines
548 B
YAML
25 lines
548 B
YAML
|
|
services:
|
||
|
|
shade-prekey:
|
||
|
|
image: shade-prekey-server:latest
|
||
|
|
build:
|
||
|
|
context: ../..
|
||
|
|
dockerfile: packages/shade-server/Dockerfile
|
||
|
|
restart: unless-stopped
|
||
|
|
ports:
|
||
|
|
- "3900:3900"
|
||
|
|
volumes:
|
||
|
|
- shade-data:/data
|
||
|
|
environment:
|
||
|
|
- PORT=3900
|
||
|
|
- SHADE_PREKEY_DB_PATH=/data/shade-prekeys.db
|
||
|
|
- SHADE_LOG_LEVEL=info
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD", "curl", "-fsS", "http://localhost:3900/health"]
|
||
|
|
interval: 30s
|
||
|
|
timeout: 5s
|
||
|
|
start_period: 10s
|
||
|
|
retries: 3
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
shade-data:
|