Advertisement
Bruno_Reis

Untitled

Feb 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. services:
  2.     postgres:
  3.       image: postgres:9.6-alpine
  4.       container_name: jardineiros-containers-postgres
  5.       environment:
  6.         - POSTGRES_USER=*
  7.         - POSTGRES_PASSWORD=*
  8.         - POSTGRES_DB=*
  9.       ports:
  10.         - 5432:5432
  11.       restart: unless-stopped
  12.     pgadmin:
  13.       image: thajeztah/pgadmin4
  14.       ports:
  15.         - "5050:5050"
  16.       depends_on:
  17.         - postgres
  18.       restart: unless-stopped
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement