GithubHelp home page GithubHelp logo

hausgold / docker-postgres Goto Github PK

View Code? Open in Web Editor NEW
0.0 13.0 0.0 171 KB

mDNS enabled official/postgres image

Home Page: https://hub.docker.com/r/hausgold/postgres/

License: MIT License

Makefile 23.17% Shell 62.71% Dockerfile 14.12%
mdns zeroconf docker postgres postresql oss docker-image

docker-postgres's Introduction

mDNS enabled official/postgres

Continuous Integration Source Code Docker Image

This Docker images provides the official/postgres image as base with the mDNS/ZeroConf stack on top. So you can enjoy postgres while it is accessible by default as postgres.local. (Port 5432)

The default user is postgres with postgres as password. Change this using the POSTGRES_USER and POSTGRES_PASSWORD environment variables.

The PostGIS extension is already available at the image and can be installed to a database.

Requirements

  • Host enabled Avahi daemon
  • Host enabled mDNS NSS lookup

Getting starting

You just need to run it like that, to get a working postgres:

$ docker run --rm hausgold/postgres

The port 5432 is untouched.

docker-compose usage example

postgres:
  image: hausgold/postgres
  environment:
    # Mind the .local suffix
    - MDNS_HOSTNAME=postgres.test.local
  ports:
    # The ports are just for you to know when configure your
    # container links, on depended containers
    - "5432"

Host configs

Install the nss-mdns package, enable and start the avahi-daemon.service. Then, edit the file /etc/nsswitch.conf and change the hosts line like this:

hosts: ... mdns4_minimal [NOTFOUND=return] resolve [!UNAVAIL=return] dns ...

Configure a different mDNS hostname

The magic environment variable is MDNS_HOSTNAME. Just pass it like that to your docker run command:

$ docker run --rm -e MDNS_HOSTNAME=something.else.local hausgold/postgres

This will result in something.else.local.

You can also configure multiple aliases (CNAME's) for your container by passing the MDNS_CNAMES environment variable. It will register all the comma separated domains as aliases for the container, next to the regular mDNS hostname.

$ docker run --rm \
  -e MDNS_HOSTNAME=something.else.local \
  -e MDNS_CNAMES=nothing.else.local,special.local \
  hausgold/postgres

This will result in something.else.local, nothing.else.local and special.local.

Other top level domains

By default .local is the default mDNS top level domain. This images does not force you to use it. But if you do not use the default .local top level domain, you need to configure your host avahi to accept it.

Further reading

docker-postgres's People

Contributors

jack12816 avatar padarom avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.