-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (30 loc) · 829 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (30 loc) · 829 Bytes
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
version: "2.4"
services:
peerstohttp:
container_name: peerstohttp
# Build image from local source (for development):
# build: .
# Build image by pulling Github's remote repo (test any branch):
# build: github.com/WinPooh32/peerstohttp#master
# Pull public image from Docker Hub:
image: WinPooh32/peerstohttp
command:
- "-port"
- "80"
# - "-port-torr"
# - "6881"
# - "-no-dht"
# - "-no-ipv4"
# - "-no-ipv6"
# - "-no-tcp"
# - "-no-udp"
# - "-profile"
# - "-torr-debug"
restart: unless-stopped
# Networking: either use the 'host' mode, sharing the host's network stack
# or expose the service's ports as needed.
network_mode: host
# ports:
# - "80:80"
# - "6881:6881/udp"
# - "6881:6881/tcp"