forked from sniff122/wtfismyip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
46 lines (45 loc) · 1.49 KB
/
docker-compose.yaml
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
version: '2.3'
services:
ipv6nat:
restart: unless-stopped
image: "robbertkl/ipv6nat"
privileged: true
network_mode: "host"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
- "/lib/modules:/lib/modules:ro"
unbound:
restart: unless-stopped
image: "gcr.io/omgwtfbbq/unbound"
runtime: runsc
networks:
omgwtfbbq:
ipv4_address: 172.19.1.50
dns: 172.19.1.50
wtf:
restart: unless-stopped
image: "gcr.io/omgwtfbbq/wtf-standalone:1009"
volumes:
- "/docker/resolv.conf:/etc/resolv.conf"
- "/docker/certs:/docker/certs"
networks:
omgwtfbbq:
ipv4_address: 172.19.1.200
dns: 172.19.1.50
ports:
- "80:10080"
- "443:10443"
stun:
restart: unless-stopped
runtime: runsc
image: "gcr.io/omgwtfbbq/stun"
networks:
omgwtfbbq:
ipv4_address: 172.19.1.150
volumes:
- "/docker/turnserver/turnserver.conf:/etc/turnserver.conf"
ports:
- "3478:3478/udp"
networks:
omgwtfbbq:
external: true