-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
53 lines (53 loc) · 969 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
version: '3'
services:
nginx:
build: nginx
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx/conf.d:/etc/nginx/conf.d
- ./acme/certs:/etc/letsencrypt
- ./nginx/data:/var/www
depends_on:
- thelounge
- yanius
links:
- php
php:
build: php
volumes:
- ./nginx/data:/var/www
thelounge:
build: thelounge
container_name: thelounge
ports:
- "127.0.0.1:9000:9000"
restart: always
volumes:
- ./thelounge:/var/opt/thelounge
rethinkdb:
image: rethinkdb
container_name: rethinkdb
ports:
- "127.0.0.1:28015:28015"
volumes:
- ./rethinkdb:/data
yanius:
build: yanius
container_name: yanius
ports:
- "56792:56792"
depends_on:
- rethinkdb
tty: true
znc:
image: znc
volumes:
- ./znc:/znc-data
ports:
- "127.0.0.1:5000:5000"
toolbox:
image: toolbox
ports:
- "3000:3000"