Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/timofurrer/docker-unidb

Dockerfile for Uni-DB @ HSLU DBS
https://github.com/timofurrer/docker-unidb

db docker hslu postgres unidb

Last synced: 14 days ago
JSON representation

Dockerfile for Uni-DB @ HSLU DBS

Awesome Lists containing this project

README

        

# Uni DB in Docker

Dockerfile and resources to host the Uni DB with postgres in a docker container.

## Usage

Start the postgres server hosting the Uni DB:

```
docker run -it timofurrer/unidb
```

Get the IP address with `docker inspect ` and use it to connect with your favorite tool!

For example:

* With `psql` within a container:

```
docker run -it --rm postgres psql -h -U postgres
```

* With `pgcli` from the host:

```
pgcli -h -U postgres
```