-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (35 loc) · 952 Bytes
/
docker-compose.yml
File metadata and controls
40 lines (35 loc) · 952 Bytes
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
###########################################################################
## Required Docker CE 17+
## it can be started as follows
## docker stack deploy --compose-file docker-compose.yml neo
## docker stack remove neo
###########################################################################
# change DB_HOST to local system IP
version: '3'
services:
database:
image: mongo:3.4.4
volumes :
- ${PWD}/data/db:/data/db
networks:
- neonet
application:
image: relevancelab/catalyst-core:latest
environment:
- DB_HOST=database
- enableBotExecuterOsCheck=true
volumes:
- ${PWD}/data/catdata:/rlc/server/catdata
- ${PWD}/logs:/rlc/server/app/logs
networks:
- neonet
web:
image: nginx:latest
ports:
- '80:80'
volumes:
- ${PWD}/config/nginx.conf:/etc/nginx/conf.d/default.conf
networks:
- neonet
networks:
neonet: