Skip to content

Instantly share code, notes, and snippets.

@megos
Created January 18, 2018 03:38
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save megos/2df071c04817456bee04597f52e60063 to your computer and use it in GitHub Desktop.
Save megos/2df071c04817456bee04597f52e60063 to your computer and use it in GitHub Desktop.
Oracle DB 11g docker compose
db:
image: oracle/database:11.2.0.2-xe
ports:
- 1521:1521
- 8085:8080
shm_size: 1g
volumes:
- ./data:/u01/app/oracle/oradata
environment:
- ORACLE_PWD=<password>
restart: unless-stopped
@brunomathidios
Copy link

Hi, when I run my docker-compose.yml with this image name above (oracle/database:11.2.0.2-xe), I receive an error:
ERROR: pull access denied for oracle/database, repository does not exist or may require 'docker login'
Do you know another free oracle database image that works?

@bastianwegge
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment