2026-03-14 20:05:05 -05:00
|
|
|
services:
|
|
|
|
|
termix:
|
|
|
|
|
image: ghcr.io/lukegus/termix:latest
|
|
|
|
|
container_name: termix
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "8080:8080"
|
|
|
|
|
volumes:
|
|
|
|
|
- termix-data:/app/data
|
|
|
|
|
environment:
|
|
|
|
|
PORT: "8080"
|
2026-05-28 22:29:20 -05:00
|
|
|
GUACD_HOST: "guacd"
|
2026-08-06 14:41:39 -05:00
|
|
|
GUACD_TUNNEL_HOST: "termix"
|
2026-07-19 12:29:52 -05:00
|
|
|
GUACD_RECORDING_PATH: "/termix-data/session_recordings/guacamole"
|
2026-03-14 20:05:05 -05:00
|
|
|
depends_on:
|
|
|
|
|
- guacd
|
|
|
|
|
networks:
|
|
|
|
|
- termix-net
|
|
|
|
|
|
|
|
|
|
guacd:
|
2026-04-22 16:55:23 -05:00
|
|
|
image: guacamole/guacd:1.6.0
|
2026-03-14 20:05:05 -05:00
|
|
|
container_name: guacd
|
|
|
|
|
restart: unless-stopped
|
2026-07-19 12:29:52 -05:00
|
|
|
volumes:
|
|
|
|
|
- termix-data:/termix-data
|
2026-03-14 20:05:05 -05:00
|
|
|
networks:
|
|
|
|
|
- termix-net
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
termix-data:
|
|
|
|
|
driver: local
|
|
|
|
|
|
|
|
|
|
networks:
|
|
|
|
|
termix-net:
|
|
|
|
|
driver: bridge
|