A Docker image of an HSQLDB server, built on version 2.5.1. This image includes:
- hsqdldb.jar
- sqltool.jar
Image exposes the standard port 9001 for running HSQLDB.
-
Pull the image from Docker Hub:
docker pull agherna/hsqldb
-
Run the image.
docker run -p 9001:9001 hsqldb
-
Edit the following files:
conf/logging.properties
conf/server.properties
conf/sqltool.rc
-
Include any SQL to initialize the database on build in
sql/init-db0.sql
. -
Run the build:
docker build . -t hsqldb
-
Run the image:
docker run -p 9001:9001 hsqldb
Image will run in the foreground and logging is directed to stdout
by default.