You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
version: '3'
|
|
|
|
services:
|
|
oracle:
|
|
image: tekintian/oracle12c:latest
|
|
container_name: oracle
|
|
environment:
|
|
# 时区上海
|
|
TZ: Asia/Shanghai
|
|
DBCA_TOTAL_MEMORY: 16192
|
|
ports:
|
|
- "18080:8080"
|
|
- "1521:1521"
|
|
volumes:
|
|
# 数据挂载
|
|
- "/docker/oracle/data:/u01/app/oracle"
|
|
restart: always
|