evohoogl.blogg.se

Postgres app add psql to path
Postgres app add psql to path











postgres app add psql to path

RUN echo "host all all 0.0.0.0/0 md5" > /etc/postgresql/9.3/main/pg_hba.conf # Adjust PostgreSQL configuration so that remote connections to the # database are possible. Psql -command "CREATE USER docker WITH SUPERUSER PASSWORD 'docker' " & \ # Note: here we use ``&\`` to run commands one after the other - the ``\`` # allows the RUN command to span multiple lines. # Note: The official Debian and Ubuntu images automatically ``apt-get clean`` # after each ``apt-get`` # Run the rest of the commands as the ``postgres`` user created by the ``postgres-9.3`` package when it was ``apt-get installed`` USER postgres # Create a PostgreSQL role named ``docker`` with ``docker`` as the password and # then create a database `docker` owned by the ``docker`` role.

#Postgres app add psql to path install

You can hide # them by prefixing each apt-get statement with DEBIAN_FRONTEND=noninteractive RUN apt-get update & apt-get install -y python-software-properties software-properties-common postgresql-9.3 postgresql-client-9.3 postgresql-contrib-9.3 # Install ``python-software-properties``, ``software-properties-common`` and PostgreSQL 9.3 # There are some warnings (in red) that show up during the build. RUN echo "deb precise-pgdg main" > /etc/apt//pgdg.list

postgres app add psql to path

It contains the most recent stable release # of PostgreSQL. # It should be the same key as RUN apt-key adv -keyserver hkp://:80 -recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8 # syntax=docker/dockerfile:1 FROM ubuntu:16.04 # Add the PostgreSQL PGP key to verify their Debian packages.













Postgres app add psql to path