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
- REQUEST
- pylint
- vscode
- Nexus
- Cheerio
- npm repository
- 서버
- RxJS
- 품질
- angular-cli
- 신한대학교
- 구글 클라우드 플랫폼
- angular2 google analytics
- nodejs
- 소프트웨어
- 도커
- ISO9126
- casperJS
- 품질 표준
- ISO25010
- 네이버 클라우드 플랫폼
- cyber.shinhan
- angular
- ISO25000
- phantomjs
- SW
- 페이지구분
- docker
- angular2
- 크롤링
Archives
- Today
- Total
목록Nexus (2)
나를 위한 기록들
Nexus에 Mirror NPM Repository 구축하기
1. Create Repository npm (hosted) > npm (proxy) > npm (group) 를 이용하여 만들겠습니다.2. Private RepositoryRepository > npm (hosted) 를 선택하고 아래와 같이 입력해주세요. 3. Proxy RepositoryRepository > npm (proxy) 를 선택하고 아래와 같이 입력해주세요. Remote storage에 공식 npm resitry 주소를 입력해주세요.4. Group RepositoryRepository > npm (group) 를 선택하고 아래와 같이 입력해주세요. Private, Proxy를 그룹화하여 단일 URL로 관리할수 있게 합니다.5. 위에서 만든 Repositroy를 사용하도록 설정‘계정:비밀번..
Nexus
2018. 10. 7. 13:37
Docker에 Nexus 설치하기
Nexus 데이터를 저장할 디렉토리 Nexus 는 user 를 200 으로 사용sudo mkdir /data/nexus sudo chown -R 200 /data/nexus 실행docker run -itd \ -p 8081:8081 \ --restart always \ --name nexus \ --volume /data/nexus:/nexus-data \ sonatype/nexus3 접속 localhost:8081 (아이피:8081) 초기 아이디, 비밀번호 admin admin123
Docker
2018. 10. 7. 13:33