Last active
November 29, 2021 21:16
-
-
Save arissonb/4c98148a1189a34b65f78c96db6ba168 to your computer and use it in GitHub Desktop.
Revisions
-
arissonb revised this gist
Nov 29, 2021 . 1 changed file with 3 additions and 2 deletions.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 @@ -3,6 +3,7 @@ version: '3' services: postgres-compose: image: postgres container_name: postgres environment: POSTGRES_USER: "root" POSTGRES_PASSWORD: "root" @@ -15,6 +16,7 @@ services: pgadmin-compose: image: dpage/pgadmin4 container_name: pgadmin4 environment: PGADMIN_DEFAULT_EMAIL: "[email protected]" PGADMIN_DEFAULT_PASSWORD: "root" @@ -27,5 +29,4 @@ services: networks: postgres-compose-network: driver: bridge -
arissonb created this gist
Jul 19, 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,31 @@ version: '3' services: postgres-compose: image: postgres environment: POSTGRES_USER: "root" POSTGRES_PASSWORD: "root" ports: - "5432:5432" volumes: - /storage/pgdata:/var/lib/postgresql/data \ networks: - postgres-compose-network pgadmin-compose: image: dpage/pgadmin4 environment: PGADMIN_DEFAULT_EMAIL: "[email protected]" PGADMIN_DEFAULT_PASSWORD: "root" ports: - "9090:80" depends_on: - postgres-compose networks: - postgres-compose-network networks: postgres-compose-network: driver: bridge