Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- cyber.shinhan
- Nexus
- 네이버 클라우드 플랫폼
- REQUEST
- nodejs
- ISO9126
- casperJS
- ISO25000
- 신한대학교
- ISO25010
- Cheerio
- 소프트웨어
- docker
- angular-cli
- phantomjs
- pylint
- 품질 표준
- 구글 클라우드 플랫폼
- 크롤링
- angular2 google analytics
- 품질
- npm repository
- vscode
- 도커
- angular2
- SW
- 서버
- RxJS
- 페이지구분
- angular
Archives
- Today
- Total
나를 위한 기록들
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