-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
62 lines (61 loc) · 1.17 KB
/
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
54
55
56
57
58
59
60
61
62
version: '2'
services:
history:
build: ./docker/history
restart: on-failure
volumes:
- ./docker/history:/src
# links:
# - mongo
live:
build: ./docker/live
restart: on-failure
volumes:
- ./docker/live:/src
# links:
# - mongo
ports:
- "8889:8888"
sync:
build: ./docker/sync
restart: on-failure
# external_links:
# - mongo:steemdb_mongo_1
volumes:
- ./docker/sync:/src
witnesses:
build: ./docker/witnesses
restart: on-failure
volumes:
- ./docker/witnesses:/src
# links:
# - mongo
# lucky:
# build: ./docker/lucky
# environment:
# steemnode: "steemd.steemit.com"
development:
build: ./docker/development
# links:
# - mongo
external_links:
- mongo:steemdb_mongo_1
volumes:
- .:/var/www/html
ports:
- "8000:80"
# mongodata:
# image: mongo:3.3.10
# volumes:
# - /data/db
# command: --break-mongo
# mongo:
# image: mongo:3.3.10
# volumes_from:
# - mongodata
# # ports:
# # - "27017:27017"
# command: --smallfiles --rest
networks:
dockernet:
external: true