Files
docker-compose-collection/ward/compose.yml
T
2023-09-10 01:25:13 +02:00

14 lines
393 B
YAML

services:
# Ward
ward:
container_name: ${WARD_CONTAINER_NAME:-Ward}
image: antonyleons/ward:${WARD_TAG:-latest}
healthcheck:
test: curl -f http://localhost:${WARD_PORT:-4000}/ || exit 1
environment:
WARD_PORT: ${WARD_PORT:-4000}
WARD_NAME: ${WARD_NAME:-Ward}
WARD_THEME: ${WARD_THEME:-light}
ports:
- ${WARD_PORT:-4000}:${WARD_PORT:-4000}