mirror of
https://gitlab.bmcstudios.org/public_projects/swg-server-docker.git
synced 2026-01-16 17:04:26 -05:00
Fixes to the docker-compose for oracle DB credentials
This commit is contained in:
@@ -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
|
||||
```
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user