22 lines
350 B
YAML
22 lines
350 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
|
|
proxyraye:
|
|
|
|
# image: lamacchinadesiderante/proxyraye:latest
|
|
|
|
restart: always
|
|
|
|
healthcheck:
|
|
test: wget --no-verbose --tries=1 --spider http://localhost:3000/api/status || exit 1
|
|
interval: 60s
|
|
retries: 5
|
|
start_period: 20s
|
|
timeout: 10s
|
|
|
|
build: .
|
|
|
|
ports:
|
|
- "8069:3000"
|