-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (35 loc) · 920 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (35 loc) · 920 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
services:
neo4j:
image: neo4j:latest
container_name: delboy
user: "${DOCKER_USER}"
ports:
- "${NEO4J_PORT_HTTP:-7474}:7474"
- "${NEO4J_PORT_BOLT:-7687}:7687"
volumes:
- "${NEO4J_DATA_DIR:-$HOME/neo4j/delboy}/data:/data"
- "${NEO4J_DATA_DIR:-$HOME/neo4j/delboy}/logs:/logs"
environment:
- NEO4J_AUTH=${NEO4J_AUTH}
restart: unless-stopped
server:
build:
context: .
dockerfile: server/Dockerfile
container_name: researchbot-server
ports:
- "${SERVER_PORT_HOST:-9090}:9090"
environment:
- SERVER_ADDR=:9090
- NEO4J_URI=bolt://delboy:7687
- NEO4J_USER=${NEO4J_USER}
- NEO4J_PASSWORD=${NEO4J_PASSWORD}
depends_on:
- neo4j
restart: unless-stopped
plantuml:
image: plantuml/plantuml-server:jetty
container_name: plantuml
ports:
- "7070:8080"
restart: unless-stopped