diff --git a/sisvietnamvn_main/src/main/docker/oracle.yml b/sisvietnamvn_main/src/main/docker/oracle.yml index d3c6e953..f0e8c4b6 100644 --- a/sisvietnamvn_main/src/main/docker/oracle.yml +++ b/sisvietnamvn_main/src/main/docker/oracle.yml @@ -1,16 +1,17 @@ # This configuration is intended for development purpose, it's **your** responsibility to harden it for production -name: sisvietnam-oracle +name: sisvietnamvn services: - sisvietnam-oracle: + oracle: image: container-registry.oracle.com/database/free:latest restart: always - network_mode: "host" + ports: + - "1521:1521" environment: - # Password for the SYS, SYSTEM, and PDBADMIN administrative accounts (official image uses ORACLE_PWD) + # Password for the SYS, SYSTEM, and PDBADMIN administrative accounts - ORACLE_PWD=Oracle123! - ORACLE_PASSWORD=Oracle123! - ORACLE_PDB=sisvietnam - # Name of the pluggable database (official image default is FREEPDB1) + # Name of the pluggable database - ORACLE_DATABASE=sisvietnam # Note: The official Oracle Free image does not automatically create custom app users/databases. # If needed, create the 'sisvietnam' user manually or use the SYSTEM user to connect.