Fixes to the docker-compose for oracle DB credentials

This commit is contained in:
Calabro, Brandon
2025-07-20 21:26:14 -05:00
parent 885255f763
commit f63464ba1e
2 changed files with 9 additions and 10 deletions

View File

@@ -29,8 +29,7 @@ REPO_URL=https://github.com/SWG-Source/swg-main.git
REPO_USERNAME=your-gitlab-username
REPO_PASSWORD=your-personal-access-token
# (Optional) Credentials for overriding the default oracle DB
ORACLE_PASSWORD=YourSecureOraclePassword
APP_USER=YourAppUser
APP_USER_PASSWORD=YourSecureAppPassword
# (Optional) Credentials for the oracle DB user/pass
DB_USER=db_user_password
DB_USER_PASSWORD=db_user_password
```

View File

@@ -7,9 +7,9 @@ services:
ports:
- "1521:1521"
environment:
ORACLE_PASSWORD: ${ORACLE_PASSWORD:-swg}
APP_USER: ${APP_USER:-swg}
APP_USER_PASSWORD: ${APP_USER_PASSWORD:-swg}
ORACLE_PASSWORD: swg
APP_USER: ${DB_USER:-swg}
APP_USER_PASSWORD: ${DB_USER_PASSWORD:-swg}
healthcheck:
test: ["CMD", "healthcheck.sh"]
interval: 10s
@@ -40,9 +40,9 @@ services:
environment:
DB_HOST: oracle
DB_PORT: 1521
DB_USER: ${APP_USER:-swg}
ORACLE_PASSWORD: ${ORACLE_PASSWORD:-swg}
DB_PASSWORD: ${APP_USER_PASSWORD:-swg}
DB_USER: ${DB_USER:-swg}
ORACLE_PASSWORD: swg
DB_PASSWORD: ${DB_USER_PASSWORD:-swg}
tty: true
stdin_open: true
volumes: