Files
Termix/docker/docker-compose.yml
T

33 lines
537 B
YAML
Raw Normal View History

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"
depends_on:
- guacd
networks:
- termix-net
guacd:
+9
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
ports:
- "4822:4822"
networks:
- termix-net
volumes:
termix-data:
driver: local
networks:
termix-net:
driver: bridge