Created
October 27, 2019 15:20
-
-
Save tingwei628/8584ddefc5d8e85f73566d5ab96bdc84 to your computer and use it in GitHub Desktop.
use postgresql and pgAdmin in docker
This file contains 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 characters
version: "3.4" | |
services: | |
pgAdmin: | |
restart: always | |
image: dpage/pgadmin4 | |
ports: | |
- "8000:80" | |
environment: | |
PGADMIN_DEFAULT_EMAIL: [email protected] | |
PGADMIN_DEFAULT_PASSWORD: 1234 | |
volumes: | |
- pgadmin:/var/lib/pgadmin | |
postgres: | |
restart: always | |
image: postgres | |
container_name: "postgres_container" | |
ports: | |
- "5432:5432" | |
environment: | |
POSTGRES_USER: me | |
POSTGRES_PASSWORD: 1234 | |
POSTGRES_DB: testDb | |
volumes: | |
- pgvol:/var/lib/postgresql/data | |
volumes: | |
pgvol: | |
pgadmin: |
hi, not sure if this is forum for a question, if not please let me know.
I am new to docker, and wonder if those host volumes (i.e. pgvol & pgadmin) are relative paths?
@silvesterkkk, you can use relative paths as well.
https://stackoverflow.com/questions/54322675/relative-path-binding-in-docker-for-volumes-in-macos-does-fail
Thank you, appreciate getting back to me.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
step1. pull docker image
postgresql
andpgAdmin
step2.
docker-compose up -d
(creare services in detached mode)step3. open pgAdmin with
0.0.0.0:8000
in the browserpgAdmin
email:
[email protected]
password:
1234
Connect to postgres
docker network inspect pgv_default
to checkpostgres_container Ipv4
me
1234
testDb
Note
If stop these services, use
docker-compose stop
if start these services, use
docker-compose start
if delete these services, use
docker-compose down
if delete all docker volumes, use
docker volume prune