나를 위한 기록들

Docker에 postgreSQL 설치하기 본문

Docker

Docker에 postgreSQL 설치하기

lyasee 2018. 9. 16. 15:12

Docker에 postgreSQL 설치하기


공홈

docker run --rm --name postgres96 \ 
-e PGDATA=/data/pgdata \  
-e POSTGRES_INITDB_ARGS="--data-checksums -E utf8 --no-locale" \  
-e POSTGRES_DB=디비명 \  
-e POSTGRES_USER=계정명 \  
-e POSTGRES_PASSWORD=비밀번호 \  
--publish 15432:5432 \  
postgres:9.6.6


또는

run --name postgresql -itd --restart always \
  --env 'DB_USER=계정명' --env 'DB_PASS=비밀번호' \
  --env 'DB_NAME=디비명' \
  --publish 포트:5432 \
  --volume 경로(postgresql 정보를 저장할):/var/lib/postgresql \
  sameersbn/postgresql:9.3


'Docker' 카테고리의 다른 글

Unable to find image 'xxx' locally  (0) 2018.10.07
Docker에 Confluence 설치하기  (0) 2018.09.16
Docker에 Jira 설치하기  (0) 2018.09.16
Docker에 MySQL 설치하기  (0) 2018.09.16
CentOS 7.0 에 Docker(도커) 설치하기  (0) 2018.09.16
Comments