TEST: Complex docker-compose rework. Not tested yet

This commit is contained in:
2025-08-25 19:14:43 +02:00
parent 455485ed24
commit d5f483dbc8
23 changed files with 301 additions and 106 deletions

View File

@@ -1,12 +1,23 @@
# An image from abesnier that works as an all-in-one and does not require database initiation.
# I don't know if it has any limitations. For my needs it fits perfectly.
services:
guacamole:
image: abesnier/guacamole:latest
restart: unless-stopped
container_name: guacamole
volumes:
- ${PATH_TO_CONFIG}:/config
ports:
- 8080:8080
# An image from abesnier that works as an all-in-one and does not require database initiation.
# I don't know if it has any limitations. For my needs it fits perfectly.
services:
guacamole:
image: abesnier/guacamole:latest
restart: unless-stopped
container_name: guacamole
volumes:
- ${PATH_TO_CONFIG}:/config
ports:
- 8080:8080
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/"]
interval: 30s
timeout: 10s
retries: 3
networks:
- guacamole-net
networks:
guacamole-net:
driver: bridge