2014-05-21 17:05:19 -04:00
|
|
|
page_title: Dockerizing PostgreSQL
|
2014-04-15 20:53:12 -04:00
|
|
|
page_description: Running and installing a PostgreSQL service
|
|
|
|
page_keywords: docker, example, package installation, postgresql
|
|
|
|
|
2014-05-21 17:05:19 -04:00
|
|
|
# Dockerizing PostgreSQL
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-04-18 16:21:55 -04:00
|
|
|
> **Note**:
|
2014-04-23 16:48:28 -04:00
|
|
|
> - **If you don't like sudo** then see [*Giving non-root
|
2014-12-15 23:25:37 -05:00
|
|
|
> access*](/installation/binaries/#giving-non-root-access)
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
## Installing PostgreSQL on Docker
|
|
|
|
|
2014-05-21 17:05:19 -04:00
|
|
|
Assuming there is no Docker image that suits your needs on the [Docker
|
2014-06-01 16:48:04 -04:00
|
|
|
Hub](http://hub.docker.com), you can create one yourself.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-21 17:05:19 -04:00
|
|
|
Start by creating a new `Dockerfile`:
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-04-18 16:21:55 -04:00
|
|
|
> **Note**:
|
2014-05-21 17:05:19 -04:00
|
|
|
> This PostgreSQL setup is for development-only purposes. Refer to the
|
2014-04-18 16:21:55 -04:00
|
|
|
> PostgreSQL documentation to fine-tune these settings so that it is
|
|
|
|
> suitably secure.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
#
|
2014-07-01 20:30:25 -04:00
|
|
|
# example Dockerfile for http://docs.docker.com/examples/postgresql_service/
|
2014-04-15 20:53:12 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
FROM ubuntu
|
|
|
|
MAINTAINER SvenDowideit@docker.com
|
|
|
|
|
|
|
|
# Add the PostgreSQL PGP key to verify their Debian packages.
|
2014-05-21 17:05:19 -04:00
|
|
|
# It should be the same key as https://www.postgresql.org/media/keys/ACCC4CF8.asc
|
2015-02-11 17:16:41 -05:00
|
|
|
RUN apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
# Add PostgreSQL's repository. It contains the most recent stable release
|
|
|
|
# of PostgreSQL, ``9.3``.
|
|
|
|
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc/apt/sources.list.d/pgdg.list
|
|
|
|
|
|
|
|
# Install ``python-software-properties``, ``software-properties-common`` and PostgreSQL 9.3
|
|
|
|
# There are some warnings (in red) that show up during the build. You can hide
|
|
|
|
# them by prefixing each apt-get statement with DEBIAN_FRONTEND=noninteractive
|
2014-07-07 14:06:34 -04:00
|
|
|
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
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
# Note: The official Debian and Ubuntu images automatically ``apt-get clean``
|
2014-07-07 14:06:34 -04:00
|
|
|
# after each ``apt-get``
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
# 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.
|
|
|
|
# Note: here we use ``&&\`` to run commands one after the other - the ``\``
|
|
|
|
# allows the RUN command to span multiple lines.
|
|
|
|
RUN /etc/init.d/postgresql start &&\
|
|
|
|
psql --command "CREATE USER docker WITH SUPERUSER PASSWORD 'docker';" &&\
|
|
|
|
createdb -O docker docker
|
|
|
|
|
|
|
|
# Adjust PostgreSQL configuration so that remote connections to the
|
|
|
|
# database are possible.
|
|
|
|
RUN echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/9.3/main/pg_hba.conf
|
|
|
|
|
|
|
|
# And add ``listen_addresses`` to ``/etc/postgresql/9.3/main/postgresql.conf``
|
|
|
|
RUN echo "listen_addresses='*'" >> /etc/postgresql/9.3/main/postgresql.conf
|
|
|
|
|
|
|
|
# Expose the PostgreSQL port
|
|
|
|
EXPOSE 5432
|
|
|
|
|
|
|
|
# Add VOLUMEs to allow backup of config, logs and databases
|
|
|
|
VOLUME ["/etc/postgresql", "/var/log/postgresql", "/var/lib/postgresql"]
|
|
|
|
|
|
|
|
# Set the default command to run when starting the container
|
|
|
|
CMD ["/usr/lib/postgresql/9.3/bin/postgres", "-D", "/var/lib/postgresql/9.3/main", "-c", "config_file=/etc/postgresql/9.3/main/postgresql.conf"]
|
|
|
|
|
|
|
|
Build an image from the Dockerfile assign it a name.
|
|
|
|
|
|
|
|
$ sudo docker build -t eg_postgresql .
|
|
|
|
|
|
|
|
And run the PostgreSQL server container (in the foreground):
|
|
|
|
|
2014-05-21 09:35:22 -04:00
|
|
|
$ sudo docker run --rm -P --name pg_test eg_postgresql
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
There are 2 ways to connect to the PostgreSQL server. We can use [*Link
|
2014-05-21 17:05:19 -04:00
|
|
|
Containers*](/userguide/dockerlinks), or we can access it from our host
|
|
|
|
(or the network).
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-04-18 16:21:55 -04:00
|
|
|
> **Note**:
|
2014-05-21 17:05:19 -04:00
|
|
|
> The `--rm` removes the container and its image when
|
2014-08-13 00:30:04 -04:00
|
|
|
> the container exits successfully.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
### Using container linking
|
|
|
|
|
2014-04-23 16:48:28 -04:00
|
|
|
Containers can be linked to another container's ports directly using
|
|
|
|
`-link remote_name:local_alias` in the client's
|
2014-04-15 20:53:12 -04:00
|
|
|
`docker run`. This will set a number of environment
|
|
|
|
variables that can then be used to connect:
|
|
|
|
|
2014-05-21 09:35:22 -04:00
|
|
|
$ sudo docker run --rm -t -i --link pg_test:pg eg_postgresql bash
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
postgres@7ef98b1b7243:/$ psql -h $PG_PORT_5432_TCP_ADDR -p $PG_PORT_5432_TCP_PORT -d docker -U docker --password
|
|
|
|
|
|
|
|
### Connecting from your host system
|
|
|
|
|
|
|
|
Assuming you have the postgresql-client installed, you can use the
|
|
|
|
host-mapped port to test as well. You need to use `docker ps`
|
|
|
|
to find out what local host port the container is mapped to
|
|
|
|
first:
|
|
|
|
|
2014-09-15 21:49:05 -04:00
|
|
|
$ sudo docker ps
|
2014-04-15 20:53:12 -04:00
|
|
|
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
|
|
|
5e24362f27f6 eg_postgresql:latest /usr/lib/postgresql/ About an hour ago Up About an hour 0.0.0.0:49153->5432/tcp pg_test
|
|
|
|
$ psql -h localhost -p 49153 -d docker -U docker --password
|
|
|
|
|
|
|
|
### Testing the database
|
|
|
|
|
|
|
|
Once you have authenticated and have a `docker =#`
|
|
|
|
prompt, you can create a table and populate it.
|
|
|
|
|
|
|
|
psql (9.3.1)
|
|
|
|
Type "help" for help.
|
|
|
|
|
2014-05-01 10:13:34 -04:00
|
|
|
$ docker=# CREATE TABLE cities (
|
2014-04-15 20:53:12 -04:00
|
|
|
docker(# name varchar(80),
|
|
|
|
docker(# location point
|
|
|
|
docker(# );
|
|
|
|
CREATE TABLE
|
2014-05-01 10:13:34 -04:00
|
|
|
$ docker=# INSERT INTO cities VALUES ('San Francisco', '(-194.0, 53.0)');
|
2014-04-15 20:53:12 -04:00
|
|
|
INSERT 0 1
|
2014-05-01 10:13:34 -04:00
|
|
|
$ docker=# select * from cities;
|
2014-04-15 20:53:12 -04:00
|
|
|
name | location
|
|
|
|
---------------+-----------
|
|
|
|
San Francisco | (-194,53)
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
### Using the container volumes
|
|
|
|
|
|
|
|
You can use the defined volumes to inspect the PostgreSQL log files and
|
|
|
|
to backup your configuration and data:
|
|
|
|
|
2014-09-15 21:49:05 -04:00
|
|
|
$ sudo docker run --rm --volumes-from pg_test -t -i busybox sh
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
/ # ls
|
|
|
|
bin etc lib linuxrc mnt proc run sys usr
|
|
|
|
dev home lib64 media opt root sbin tmp var
|
|
|
|
/ # ls /etc/postgresql/9.3/main/
|
|
|
|
environment pg_hba.conf postgresql.conf
|
|
|
|
pg_ctl.conf pg_ident.conf start.conf
|
|
|
|
/tmp # ls /var/log
|
|
|
|
ldconfig postgresql
|