-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (43 loc) · 885 Bytes
/
docker-compose.yml
File metadata and controls
47 lines (43 loc) · 885 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
41
42
43
44
45
46
47
version: "3"
networks:
openvideo:
services:
neo4j:
image: neo4j:3.5
restart: unless-stopped
networks:
- openvideo
ports:
- 7474:7474
- 7687:7687
volumes:
- ./dev/neo4j/conf:/conf
- ./dev/neo4j/logs:/logs
- ./dev/neo4j/data:/data
environment:
- NEO4J_dbms_memory_pagecache_size=1G
- NEO4J_dbms.memory.heap.initial_size=1G
- NEO4J_dbms_memory_heap_max__size=1G
openvideo-api:
build:
context: .
dockerfile: Dockerfile
image: openvideo-server
networks:
- openvideo
depends_on:
- neo4j
restart: unless-stopped
env_file: ./dev/.env
expose:
- "4000"
nginx:
image: nginx:latest
networks:
- openvideo
volumes:
- ./dev/nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- openvideo-api
ports:
- "3000:3000"