-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.base.yaml
66 lines (59 loc) · 1.51 KB
/
docker-compose.base.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
59
60
61
62
63
64
65
66
version: '3.5'
services:
# must still be filled with content
olahds_backend:
build: # on mac osx based host
context: .
dockerfile: Dockerfile
container_name: olahds_backend
links:
- olahds_mongo
- olahds_web_notifier
depends_on:
- olahds_mongo
- olahds_web_notifier
restart: on-failure:3
env_file: .env
networks:
olahd:
aliases:
- backend
olahds_web_notifier:
image: docker.gitlab.gwdg.de/subugoe/metsimporter/web:latest
#image: docker.gitlab.gwdg.de/digizeit/digizeit-server/web:live
#build: # on mac osx based host
# context: web
# dockerfile: Dockerfile
command: /usr/local/bin/web -d /etc/env/
container_name: olahds_web_notifier
ports:
- "1323:1323"
links:
- olahds_redis
- olahds_indexer
depends_on:
- olahds_redis
- olahds_indexer
restart: on-failure:10
olahds_indexer:
image: docker.gitlab.gwdg.de/subugoe/metsimporter/indexer:latest
#build: # on mac osx based host
# context: indexer
# dockerfile: Dockerfile
command: /usr/local/bin/indexer -d /etc/env/
container_name: olahds_indexer
links:
- olahds_redis
- olahds_search
depends_on:
- olahds_redis
- olahds_search
restart: on-failure:10
networks:
olahd:
networks:
olahd:
name: olahd
driver: bridge
#driver_opts:
# com.docker.network.driver.mtu: 1450