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 | 31 |
Tags
- 구글 클라우드 플랫폼
- angular2
- ISO25000
- 도커
- 크롤링
- vscode
- docker
- phantomjs
- Nexus
- 품질
- 신한대학교
- ISO25010
- SW
- 품질 표준
- pylint
- npm repository
- ISO9126
- Cheerio
- 소프트웨어
- cyber.shinhan
- angular-cli
- angular2 google analytics
- nodejs
- angular
- casperJS
- RxJS
- REQUEST
- 네이버 클라우드 플랫폼
- 서버
- 페이지구분
Archives
- Today
- Total
목록PostgreSQL (1)
나를 위한 기록들
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 \ --v..
Docker
2018. 9. 16. 15:12