Files
compose-projects-services/termix/docker-compose.yml
Christoph Califice 4c9706733f
Some checks failed
Deploy Stacks / Redeploy_services_stacks (push) Has been cancelled
update termix
2026-03-20 21:45:11 -03:00

28 lines
529 B
YAML

services:
termix:
image: ghcr.io/lukegus/termix:latest
container_name: termix
restart: unless-stopped
ports:
- "8090:8080"
volumes:
- /home/ccalifice/docker-data/termix/termix-data:/app/data
environment:
PORT: "8080"
depends_on:
- guacd
networks:
- termix-net
guacd:
image: guacamole/guacd:latest
container_name: guacd
restart: unless-stopped
ports:
- "4822:4822"
networks:
- termix-net
networks:
termix-net:
driver: bridge