11 lines
344 B
YAML
11 lines
344 B
YAML
services:
|
|
# Pybricks Code
|
|
pybrickscode:
|
|
container_name: ${PYBRICKSCODE_CONTAINER_NAME:-PybricksCode}
|
|
image: axchrono/pybrickscode:${PYBRICKSCODE_TAG:-latest}
|
|
restart: ${RESTART:-unless-stopped}
|
|
healthcheck:
|
|
test: wget --no-verbose --tries=1 --spider http://localhost:80/
|
|
ports:
|
|
- ${PYBRICKSCODE_PORT:-80}:80
|