Created
February 5, 2019 23:19
-
-
Save maxbraynner/eeb54d624efca722e767a6956b5ac4d3 to your computer and use it in GitHub Desktop.
Revisions
-
maxbraynner created this gist
Feb 5, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ version: '3.1' services: db_postgres: image: postgres restart: always volumes: - pgdata:/var/lib/postgresql/data environment: POSTGRES_PASSWORD: max123 ports: - 5432:5432 # pgadmin4: # # image: dpage/pgadmin4:latest # image: chorss/docker-pgadmin4:3.2 # restart: always # environment: # # PGADMIN_DEFAULT_EMAIL: [email protected] # # PGADMIN_DEFAULT_PASSWORD: postgres # PGADMIN_SETUP_EMAIL: [email protected] # PGADMIN_SETUP_PASSWORD: postgres # ports: # - 80:5050 volumes: pgdata: