Some checks failed
Deploy Stacks / Redeploy_services_stacks (push) Has been cancelled
28 lines
529 B
YAML
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 |