11 lines
298 B
YAML
11 lines
298 B
YAML
services:
|
|
# IT Tools
|
|
ittools:
|
|
container_name: ${ITTOOLS_CONTAINER_NAME:-ITTools}
|
|
image: corentinth/it-tools:${ITTOOLS_TAG:-latest}
|
|
restart: ${RESTART:-unless-stopped}
|
|
healthcheck:
|
|
test: curl -f http://localhost:80/ || exit 1
|
|
ports:
|
|
- ${ITTOOLS_HTTP_PORT:-80}:80
|