forked from wtfismyip/wtfismyip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
58 lines (55 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
57
58
version: '2.3'
services:
ipv6nat:
restart: unless-stopped
image: "us-docker.pkg.dev/omgwtfbbq/gcr.io/ipv6nat:3"
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: "us-docker.pkg.dev/omgwtfbbq/gcr.io/unbound:2000"
runtime: runsc-kvm
mem_limit: 4g
networks:
omgwtfbbq:
ipv4_address: 172.19.1.50
dns: 172.19.1.50
wtf:
restart: unless-stopped
volumes:
- "/docker/resolv.conf:/etc/resolv.conf"
- "/usr/local/tmp:/usr/local/tmp"
image: "us-docker.pkg.dev/omgwtfbbq/gcr.io/wtf-standalone:2.0.23"
networks:
omgwtfbbq:
ipv4_address: 172.19.1.200
dns: 172.19.1.50
mem_limit: 8g
ports:
- "80:10080"
- "443:10443"
stun:
restart: unless-stopped
image: "us-docker.pkg.dev/omgwtfbbq/gcr.io/stun:2000"
runtime: runsc-kvm
mem_limit: 256m
networks:
omgwtfbbq:
ipv4_address: 172.19.1.150
ports:
- "3478:3478/udp"
redis:
restart: unless-stopped
image: "us-docker.pkg.dev/omgwtfbbq/gcr.io/redis:2000"
runtime: runsc-kvm
mem_limit: 256m
networks:
omgwtfbbq:
ipv4_address: 172.19.1.70
dns: 172.19.1.50
networks:
omgwtfbbq:
external: true