13 lines
244 B
YAML
13 lines
244 B
YAML
services:
|
|
probe-server:
|
|
build:
|
|
context: .
|
|
container_name: yc-probe-server
|
|
restart: always
|
|
environment:
|
|
PORT: ${PROBE_PORT:-19090}
|
|
HOST: 0.0.0.0
|
|
ports:
|
|
- "${PROBE_PORT:-19090}:${PROBE_PORT:-19090}"
|
|
|