commit 0eca851de9189ef90827e8767752f8494c34cad1 Author: stephane.david Date: Sun Mar 30 16:53:56 2025 +0200 First version diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..84d0d33 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,19 @@ +services: + guacamole: + container_name: Guacamole + image: jwetzell/guacamole + healthcheck: + test: curl -f http://localhost:8080/ || exit 1 + mem_limit: 6g + cpu_shares: 1024 + security_opt: + - no-new-privileges:false + restart: unless-stopped + ports: + - "8348:8080" + volumes: + - /var/lib/docker/volumes/guacamole:/config:rw + environment: + PUID: 1000 + PGID: 1000 + TZ: Europe/Paris \ No newline at end of file