-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
33 lines (32 loc) · 1022 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
version: '2'
services:
nginx:
#build: ./nginx
image: unixvoid/nginx
volumes:
- ./nginx/conf:/cryo/conf:ro
- ./nginx/data:/cryo/data:ro
- /tmp/redis:/redisbackup:rw
ports:
- "8080:8080"
network_mode: "bridge"
links:
- bitnuke
redis:
#build: ./redis
image: unixvoid/redis
expose:
- "6397"
network_mode: "bridge"
bitnuke:
#build: ./bitnuke
image: unixvoid/bitnuke
depends_on:
- redis
volumes:
- ./bitnuke/config.gcfg:/config.gcfg:ro
expose:
- "8808"
network_mode: "bridge"
links:
- redis