-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
61 lines (58 loc) · 1.39 KB
/
Copy pathcompose.yaml
File metadata and controls
61 lines (58 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
services:
termix:
image: ghcr.io/lukegus/termix:latest
container_name: termix
restart: unless-stopped
security_opt:
- no-new-privileges:true
networks:
- termix
- traefik
ports:
- "8090:8080"
volumes:
- termix-data:/app/data
environment:
- TZ=${TZ:-America/New_York}
- PORT=8080
depends_on:
- guacd
labels:
- "traefik.enable=true"
- "traefik.http.routers.termix.rule=Host(`${TERMIX_DOMAIN}`)"
- "traefik.http.routers.termix.entrypoints=websecure"
- "traefik.http.routers.termix.tls.certresolver=letsencrypt"
- "traefik.http.routers.termix.middlewares=secure-headers@file,lan-only@file"
- "traefik.http.routers.termix.service=termix@docker"
- "traefik.http.services.termix.loadbalancer.server.port=8080"
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
guacd:
image: guacamole/guacd:1.6.0
container_name: guacd
restart: unless-stopped
security_opt:
- no-new-privileges:true
networks:
- termix
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
volumes:
termix-data:
driver: local
driver_opts:
type: none
device: /mnt/SSD/Containers/termix
o: bind
networks:
termix:
name: termix
driver: bridge
traefik:
external: true