add bifrost docs
This commit is contained in:
32
active/container_bifrost/compose/compose.yaml
Normal file
32
active/container_bifrost/compose/compose.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
services:
|
||||
bifrost:
|
||||
image: docker.io/maximhq/bifrost:latest
|
||||
container_name: bifrost
|
||||
ports:
|
||||
- "8000:8000"
|
||||
volumes:
|
||||
- bifrost-data:/app/data
|
||||
environment:
|
||||
- APP_PORT=8000
|
||||
- APP_HOST=0.0.0.0
|
||||
- LOG_LEVEL=info
|
||||
- LOG_STYLE=json
|
||||
ulimits:
|
||||
nofile:
|
||||
soft: 65536
|
||||
hard: 65536
|
||||
healthcheck:
|
||||
test:
|
||||
[
|
||||
"CMD",
|
||||
"wget",
|
||||
"--no-verbose",
|
||||
"--tries=1",
|
||||
"-O",
|
||||
"/dev/null",
|
||||
"http://localhost:8080/health",
|
||||
]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user