1234567891011121314151617181920 |
- version: '2'
- services:
- app:
- image: registry.cn-hangzhou.aliyuncs.com/kennylee/oracle-xe-11g
- ports:
- - "1521:1521"
- - "1522:22"
- container_name: oracle-xe-11g
- restart: always
- environment:
- - TZ=Asia/Shanghai
- - ORACLE_ALLOW_REMOTE=true
- shm_size: 2g
- volumes:
- - ./data/:/u01/data/:z
- logging:
- driver: 'json-file'
- options:
- max-size: '30m'
- max-file: '1'
|