docker-compose.yml 528 B

1234567891011121314151617181920
  1. version: '2'
  2. services:
  3. app:
  4. image: registry.cn-hangzhou.aliyuncs.com/kennylee/oracle-xe-11g
  5. ports:
  6. - "1521:1521"
  7. - "1522:22"
  8. container_name: oracle-xe-11g
  9. restart: always
  10. environment:
  11. - TZ=Asia/Shanghai
  12. - ORACLE_ALLOW_REMOTE=true
  13. shm_size: 2g
  14. volumes:
  15. - ./data/:/u01/data/:z
  16. logging:
  17. driver: 'json-file'
  18. options:
  19. max-size: '30m'
  20. max-file: '1'