-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
52 lines (46 loc) · 1.32 KB
/
compose.yaml
File metadata and controls
52 lines (46 loc) · 1.32 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
name: transmission
x-daemonless:
title: "Transmission"
icon: ":simple-transmission:"
category: "Downloaders"
description: "Lightweight BitTorrent client with a web UI for managing torrent downloads."
upstream_url: "https://github.com/transmission/transmission"
web_url: "https://transmissionbt.com/"
freshports_url: "https://www.freshports.org/net-p2p/transmission-daemon/"
user: "bsd"
mlock: false
upstream_binary: false
appjail: true
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
USER: "Optional: Web UI Username"
PASS: "Optional: Web UI Password"
volumes:
/config: "Configuration directory"
/downloads: "Download directory"
/watch: "Watch directory for .torrent files"
ports:
9091: "Web UI"
51413: "Torrent peer port"
services:
transmission:
image: ghcr.io/daemonless/transmission:latest
container_name: transmission
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
- USER=
- PASS=
volumes:
- /path/to/containers/transmission:/config
- /path/to/downloads:/downloads
- /path/to/watch:/watch
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp