You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
594 B
22 lines
594 B
# 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
|
|
|