Github repository: https://github.com/ruslanguns/java-docker-objectdb
268
IMPORTANT! This repository is in development, use at your own risk!
ObjectDB is a powerful Object-Oriented Database Management System (ODBMS) whose native API is the Java Persistence API (JPA).
This repository has a basic configuration for running a server instance of ObjectDB using docker.
docker build -t ruslanguns/java-objectdb:latest .
docker run --rm -it -v $(pwd)/data:/home/user/db -p 6136:6136 ruslanguns/java-objectdb:latest
docker-compose up # If you want to run standalone OR
docker-compose up -d # If you want to run as daemon
Feel free to edit the config.xml file to change the configuration, but be careful with the environment variables "DB_PORT", "DB_USERNAME" and "DB_PASSWORD", since if you change them you will need to update the dockerfile and docker-compose.yml file to make it dynamic (you can see the entrypoint where I'm replacing coincidences).
If you want to contribute to this project, please, feel free to fork it and make your changes. There are few tasks that I'm currently working on:
Ruslan Gonzalez Twitter: @ruslangonzalez
Content type
Image
Digest
Size
258.1 MB
Last updated
over 4 years ago
docker pull ruslanguns/java-objectdb:main