skip to Main Content

Starting an Oracle DB using Docker Compose

I'm starting an oracle DB in docker (on OS Windows 10) with the following command: docker run -d --env-file C:(...)ora_db_env.dat -p 9445:1521 --name oracle-std --shm-size="8g" container-registry.oracle.com/database/standard Works fine. Now I want to do the same using docker compose. https://www.composerize.com/ gives…

VIEW QUESTION

Docker sync volumes

So... I trying start learning Docker. But I can't sync the host and the container using volumes on change and save code (using the npm run dev). All the time I have to restart the docker-compose up --build to the…

VIEW QUESTION
Back To Top
Search