1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
# PROJECT: dolphin |
||||
# VERSION: 1.0.0 |
||||
# Author: wangxiang4 |
||||
|
||||
# https://support.websoft9.com/docs/docker/zh/solution-compose.html#command |
||||
version: "3" |
||||
services: |
||||
oracleservice: |
||||
image: gvenzl/oracle-xe:11 |
||||
container_name: oracledb |
||||
environment: |
||||
#设置sys和system用户密码 |
||||
ORACLE_PASSWORD: wangxiang4123456123456 |
||||
#自定义用户 |
||||
APP_USER: wangxiang4 |
||||
#自定义用户密码 |
||||
APP_USER_PASSWORD: wangxiang4123456 |
||||
ports: |
||||
- 1521:1521 |
||||
volumes: |
||||
- /usr/software/dockerDatabase/oracle/oradata:/u01/app/oracle/oradata |
||||
restart: always |
Loading…
Reference in new issue