Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/timofurrer/docker-unidb
- Owner: timofurrer
- Created: 2018-03-27T11:28:30.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-27T12:00:48.000Z (almost 7 years ago)
- Last Synced: 2024-12-17T16:33:36.647Z (16 days ago)
- Topics: db, docker, hslu, postgres, unidb
- Language: Makefile
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```