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
# Local Oracle Database XE for RDP integration testing (development / CI opt-in only).
#
# Image: gvenzl/oracle-xe — Oracle Database Express Edition (free for dev/test).
# Not for production. Enterprise workloads → use GCP / Oracle Cloud (see README.md).
#
# Prerequisites:
# python3 integration_testing/scripts/rancher/check_rancher_desktop.py [--configure]
# python3 integration_testing/scripts/rancher/start_rancher_desktop.py
#
# Usage:
# cd integration_testing/Oracle
# cp .env.example .env # optional — defaults match ConnectorX fixture URLs
# docker compose up -d
# docker compose ps
# docker compose logs -f oracle # wait for "DATABASE IS READY TO USE!"
services:
oracle:
image: gvenzl/oracle-xe:21-slim
container_name: rdp-oracle-xe-test
restart: "no"
ports:
- "${ORACLE_PORT:-1521}:1521"
environment:
ORACLE_PASSWORD: ${ORACLE_PASSWORD:-rdp_test_sys}
APP_USER: ${ORACLE_APP_USER:-etl_user}
APP_USER_PASSWORD: ${ORACLE_APP_PASSWORD:-rdp_test_etl}
volumes:
- oracle-xe-data:/opt/oracle/oradata
healthcheck:
test:
interval: 15s
timeout: 10s
retries: 20
start_period: 120s
volumes:
oracle-xe-data: