일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 한성대맛집
- 서울숲누룽지통닭구이
- 통영
- react
- ubuntu자바설치
- 스페인여행
- 방이편백육분삼십
- ELK
- 자바스크립트에러처리
- 성북구맛집
- 통영예쁜카페
- 꼴뚜기회
- 돈암동맛집
- 국가직
- gradle
- JavaScript
- 한남동맛집
- 통영여행
- tomcat7
- 영화추천
- 성신여대맛집
- 파이썬
- npm
- springboot
- 성신여대편백집
- 뚝섬역맛집
- 통영에어비앤비
- 공무원
- 퇴사후공무원
- 방이편백육분삼십성신여대
- Today
- Total
목록ICT&Tools (6)
코린이의 기록
docker build를 하려고했더니 아래와 같은 error 발생 Is the docker daemon running? docker 실행이 안됬나보다 하고 실행 시켜봄 $ systemctl start docker.service 동작 안됨. 아래 커맨드로 좀 더 자세한 원인 파악을 해봄 $ journalctl -xe -- -- The start-up result is done. 4월 16 14:16:37 rusdev logstash[160250]: Sending Logstash logs to /var/log/logstash which is now configured via log4j2.properties 4월 16 14:16:38 rusdev logstash[160250]: [2020-04-16T14:16..
Command line instructions Git global setup git config --global user.name "yoonsoyeon" git config --global user.email "sy.yoon@alticast.com" Create a new repository git clone http://10.20.30.40:8000/ota_system/admin-ui.git cd admin-ui touch README.md git add README.md git commit -m "add README" git push -u origin master Existing folder cd existing_folder git init git remote add origin git@10.20.3..
1. Dockerfile 설정 $ sudo vim Dockerfile FROM ubuntu:18.04 MAINTAINER YOUR_NAME # Install Nginx. RUN apt-get update RUN apt-get install -y nginx RUN echo "\ndaemon off;" >> /etc/nginx/nginx.conf RUN chown -R www-data:www-data /var/lib/nginx # Define mountable directories. VOLUME ["/etc/nginx/sites-enabled", "/etc/nginx/certs", "/etc/nginx/conf.d", "/var/log/nginx", "/var/www/html"] #copy origin co..
초보를 위한 도커 안내서 - 도커란 무엇인가? 초보를 위한 도커 안내서 - 설치하고 컨테이너 실행하기 초보를 위한 도커 안내서 - 이미지 만들고 배포하기
우선 Bitbucket에서 Create repository를 생성한다 Configure Git for the first time 사용자 정보를 먼저 설정한다. 이름과 이메일 주소를 설정해준다. Commit시 사용되기 때문 git config --global user.name "[user name]" git config --global user.email "[user email]" ex. # git config --globlal user.name "test" # git config -- global user.eimail "test@google.com" Working with your repository I just want to clone this repository If you want to simply..