furtka-apps/apps/it-tools/docker-compose.yaml

21 lines
774 B
YAML
Raw Normal View History

# Furtka IT-Tools — browser-side utility toolbox.
#
# IT-Tools is a purely static single-page app: the container serves
# prebuilt HTML/JS and does all work client-side. No state, no volumes,
# no env knobs — that's why this app has no manifest.settings and no
# .env.example.
#
# TODO(image-pin): `:latest` is shaky for production — pin to a digest
# (`corentinth/it-tools@sha256:...`) or a stable tag once we've verified
# one against the upstream registry. For the MVP run we accept the drift
# risk to keep the install reproducible against whatever the upstream
# image happens to be on test day; revisit before any non-developer
# touches this.
services:
it-tools:
image: corentinth/it-tools:latest
restart: unless-stopped
ports:
- "8080:80"