-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (30 loc) · 867 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (30 loc) · 867 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
# NOTE: Expect issues at this time, this not commonly used directly and likely needs more updates.
services:
database:
image: gvenzl/oracle-free:23.6-full
container_name: cwms-dev-db
restart: always
volumes:
- cwms-dev-oracle:/opt/oracle/oradata:rw
environment:
- ORACLE_PASSWORD=password
ports:
- "1521:1521"
schema:
build:
context: ./schema
container_name: cwms-dev-schema
environment:
- DB_HOST_PORT=cwms-dev-db:1521
- DB_NAME=/FREEPDB1
- CWMS_USER=s0hectest
- SYS_PASSWORD=password
- CWMS_PASSWORD=password
- BUILDUSER_PASSWORD=password
- OFFICE_ID=HQ
- OFFICE_EROC=S0
# With installonce set to 0 the schema will be removed (equivalent to ant clean build) each time this runs.
- INSTALLONCE=0
- QUIET=0
volumes:
cwms-dev-oracle: