15 lines
367 B
YAML
15 lines
367 B
YAML
services:
|
|
composetoolbox:
|
|
image: ghcr.io/bluegoosemedia/composetoolbox
|
|
container_name: compose-toolbox
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "nc -z 127.0.0.1 3000 || exit 1"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 90s
|
|
ports:
|
|
- 3755:3000
|
|
environment:
|
|
NODE_ENV: production
|
|
restart: on-failure:5 |