Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,14 @@ services:
MINIO_ROOT_PASSWORD: minioadmin
volumes:
- minio-data:/data
labels:
- "dome.name=minio"
- "dome.description=S3-compatible object storage for the Access Node"
- "dome.owner=Altia"
- "dome.type=service"
- "dome.lifecycle=sandbox"
- "dome.versions=any"

healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/ready"]
interval: 10s
Expand Down Expand Up @@ -606,6 +614,13 @@ services:
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- access-node
labels:
- "dome.name=dozzle"
- "dome.description=Realtime log viewer for Docker containers"
- "dome.owner=Altia"
- "dome.type=service"
- "dome.lifecycle=sandbox"
- "dome.versions=any"
# Comment the profile directive to have dozzle always enabled.
# if profile is active (dozzle disabled by default), you can still manually enable dozzle with the command: docker compose --profile debug up -d
profiles:
Expand Down
Loading