-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
39 lines (37 loc) · 950 Bytes
/
docker-compose.yml
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
version: "3.5"
services:
app:
image: gcr.io/bounce-code/nodes/proxy-server
build:
context: .
dockerfile: Dockerfile
restart: always
networks:
publicnet:
aliases:
- internal.iaimhigh.me
- dev.iaimhigh.me
- iaimhigh.me
servicenet:
aliases:
- proxy.node.internal.iaimhigh.me
# volumes:
# - ./data/nginx:/etc/nginx/conf.d
# - ./data/certbot/conf:/etc/letsencrypt
# - ./data/certbot/www:/var/www/certbot
ports:
- 80:80
- 443:443
- 1047:1047
- 1935:1935
# certbot:
# image: certbot/certbot
# entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
# volumes:
# - ./data/certbot/conf:/etc/letsencrypt
# - ./data/certbot/www:/var/www/certbot
networks:
servicenet:
name: iaimhigh-servicenet
publicnet:
name: iaimhigh-publicnet