1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:31 +02:00
dockerfiles/postgres
2016-12-07 09:46:01 +08:00
..
docker-compose.yml add postgres 2016-12-07 09:46:01 +08:00
README.md add postgres 2016-12-07 09:46:01 +08:00

postgres

docker-compose.yml

postgres:
  image: postgres:alpine
  ports:
    - "5432:5432"
  environment:
    - POSTGRES_USER=root
    - POSTGRES_PASSWORD=root
    - POSTGRES_DB=postgres
  restart: always

up and running

$ docker-compose up -d

$ docker-compose exec postgres psql postgres
>>> SELECT CURRENT_TIMESTAMP;
              now
-------------------------------
 2016-12-07 01:44:29.872928+00
(1 row)

>>> \q