-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (37 loc) · 1.12 KB
/
Copy pathdocker-compose.yml
File metadata and controls
39 lines (37 loc) · 1.12 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
services:
simplex-tor:
image: lncm/tor:latest
container_name: simplex-tor
restart: unless-stopped
user: "${USER_UID}:${USER_GID}"
depends_on:
- simplex-smp
- simplex-xftp
volumes:
- ./torrc:/etc/tor/torrc:ro
- ./data/tor:/data/.tor:z
simplex-smp:
image: simplexchat/smp-server:latest
container_name: simplex-smp
restart: unless-stopped
user: "${USER_UID}:${USER_GID}"
environment:
- WEB_MANUAL=${WEB_MANUAL:-1}
- ADDR=${ADDR_SMP?"Please specify the SMP domain."}
- PASS=${PASS:-}
volumes:
- ./data/smp/config:/etc/opt/simplex:z
- ./data/smp/state:/var/opt/simplex:z
simplex-xftp:
image: simplexchat/xftp-server:latest
container_name: simplex-xftp
restart: unless-stopped
user: "${USER_UID}:${USER_GID}"
environment:
- ADDR=${ADDR_XFTP?"Please specify the XFTP domain."}
- QUOTA=${QUOTA?"Please specify the quota for the XFTP server."}
- PASS=${PASS:-}
volumes:
- ./data/xftp/config:/etc/opt/simplex-xftp:z
- ./data/xftp/state:/var/opt/simplex-xftp:z
- ./data/xftp/files:/srv/xftp