-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (29 loc) · 846 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (29 loc) · 846 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
32
33
version: "3.9"
services:
rtty:
container_name: rtty
build: rtty_client
networks:
- network
command: ["rtty", "-s", "-I", "docker_test_client", "-f", "root", "-C", "/etc/rtty/rttys.ca", "-h", "rttys", "-t", "0bc51b8495a39d6b8bcfc149deac5289", "-a", "-c", "/etc/rtty/rtty.crt", "-k", "/etc/rtty/rtty.key"]
volumes:
- ./certs:/etc/rtty
networks:
- network
rttys:
container_name: rttys
build: rttys
ports:
- 5913:5913
- 5912:5912
environment:
- RTTYS_TOKEN=0bc51b8495a39d6b8bcfc149deac5289
volumes:
- ./certs:/etc/rttys:ro
- /etc/localtime:/etc/localtime:ro
networks:
- network
networks:
# Declare our private network. We must declare one for the magic
# Docker DNS to work, but otherwise its default settings are fine.
network: {}