-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.oracle.yml
More file actions
39 lines (35 loc) · 845 Bytes
/
docker-compose.oracle.yml
File metadata and controls
39 lines (35 loc) · 845 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
# Docker Compose for Oracle XE development/testing
# Usage: docker-compose -f docker-compose.oracle.yml up -d
version: "3.8"
services:
oracle-xe:
image: gvenzl/oracle-xe:21-slim
container_name: sql-graph-oracle-xe
environment:
ORACLE_PASSWORD: password
APP_USER: hr
APP_USER_PASSWORD: password
ports:
- "1521:1521"
volumes:
- oracle-data:/opt/oracle/oradata
healthcheck:
test: ["CMD", "healthcheck.sh"]
interval: 30s
timeout: 10s
retries: 10
start_period: 120s
neo4j:
image: neo4j:4.4
container_name: sql-graph-neo4j-oracle
environment:
NEO4J_AUTH: neo4j/password
NEO4J_ACCEPT_LICENSE_AGREEMENT: "yes"
ports:
- "7474:7474"
- "7687:7687"
volumes:
- neo4j-data:/data
volumes:
oracle-data:
neo4j-data: