How to build docker image? #951
-
|
HI, I can see docs mentioning docker build, but cannot find any Dockerfile in the git repository. Any instructions would be appreciated, thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
|
@rophy Hi! Thanks for checking. Now we’re only distributing the prebuilt image on Docker Hub, so there isn’t a Dockerfile in the repo. We’re still tidying up the Dockerfile, it will be published with one of the upcoming releases. Let me know if you need anything in the meantime. |
Beta Was this translation helpful? Give feedback.
-
|
I'd like to leverage this project to "lift-and-shift" some oracledb to IvoryDB, to the level that I am willing to spend time on adding tests, verifying compatibiltiy and/or contributing. The make the development and testing more friendly for the team, I'd like to set up the dev env with containers as first-class. I have created a Dockerfile for dev container by "reverse engineering" your GitHub Workflows with some help from AI. With this docker-compose.yaml, I can run: docker compose up -d
docker compose exec dev bash
# inside dev container
./configure --prefix=/home/ivorysql/ivorysql --enable-debug --enable-cassert --with-uuid=e2fs --with-libxml
make
make all checkBefore going further, I'm hoping to get some support from you so I don't need to reverse engineer too much. Any help would be appreciated. If you have a Dockerfile for the production IvorySQL docker image that works but needs tidying up, I'll be glad to pick up from where you're at and help to clean it up, in case that helps. |
Beta Was this translation helpful? Give feedback.
-
|
You can find the Dockerfile you need in the docker_library project. |
Beta Was this translation helpful? Give feedback.
You can find the Dockerfile you need in the docker_library project.