An open API service indexing awesome lists of open source software.

https://github.com/nwtgck/h2database-dockerfile

H2 Database Docker image based on Alpine
https://github.com/nwtgck/h2database-dockerfile

docker docker-image h2-database jdbc

Last synced: about 2 months ago
JSON representation

H2 Database Docker image based on Alpine

Awesome Lists containing this project

README

          

# H2 Database Dockerfile
[![Docker Automated build](https://img.shields.io/docker/automated/nwtgck/h2database.svg)](https://hub.docker.com/r/nwtgck/h2database/)

Docker image for [H2 Database](https://www.h2database.com/html/main.html)

## Run Example

```bash
docker run -it -p 9092:9092 -p 8082:8082 nwtgck/h2database -tcpAllowOthers -webAllowOthers
```

Then, you can access to to see Web console.

NOTE: `-tcpAllowOthers` option is necessary to access via TCP from outside of container.