建立compose.yaml
———
services:
guacamole:
image: flcontainers/guacamole
container_name: guacamole
environment:
TZ: ‘Asia/Taipei’
EXTENSIONS: ‘auth-totp,auth-ldap’
volumes:
– postgres:/config
– /etc/localtime:/etc/localtime:ro
ports:
– 8088:8080
volumes:
postgres:
driver: local
———
Read more
compose
使用Docker Compose 安裝qbittorrent
因為本機就可以安裝qbittorrent-nox,不需要再透過Docker隔離相關的服務
而且實測透過docker也沒有比較好的效率
所以,先將Compose相關服務先備份出來
之後會實際安裝qbittorrent-nox來提供服務
Read more