Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.58 KB | None | 0 0
  1. version: '3'
  2. services:
  3.   postgres:
  4.     image: postgres
  5.     hostname: postgres
  6.     ports:
  7.       - "5433:5432"
  8.     environment:
  9.       POSTGRES_USER: postgres
  10.       POSTGRES_PASSWORD: postgres
  11.       POSTGRES_DB: clash_royale
  12.     volumes:
  13.       - postgres-data:/var/lib/postgresql/data
  14.     restart: unless-stopped
  15.  
  16.   pgadmin:
  17.     image: dpage/pgadmin4
  18.     depends_on:
  19.       - postgres
  20.     ports:
  21.       - "80:80"
  22.     environment:
  23.       PGADMIN_DEFAULT_EMAIL: kscieslinski@gmail.com
  24.       PGADMIN_DEFAULT_PASSWORD: ****
  25.     restart: unless-stopped
  26.  
  27. volumes:
  28.   postgres-data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement