본문 바로가기
  • "하나씩 기록하다보면 누군가에게 도움이 되지 않을까"
728x90

docker3

[가상화] [Docker] dockerfile로 Grafana, Influxdb 환경설정 1. 서론 Docker 공부 중 dockerfile을 이용해서 한번에 Grafana, Influxdb 설치 및 접속 테스트 진행 2. 본문 Dockerfile 내용 FROM ubuntu:20.04 run apt-get update && apt-get upgrade -y run apt install curl -y run apt install influxdb -y run apt install -y apt-transport-https, vim run apt install wget run apt install gnupg -y run apt install -y software-properties-common run wget -q -O - https://packages.grafana.com/gpg.key | apt.. 2021. 3. 9.
[가상화] Docker 무작정 따라하기 (3) - InfluxDB, Grafana 0. 참고 dev-t-blog.tistory.com/38?category=683683 [모니터링] Docker + Grafana + Telegraf + Influxdb 로 모니터링하기 리눅스 CentOS 7 버전에서 도커를 이용하여 모니터링을 구축하여 사용하기 1. CentOS 7에 도커를 설치합니다. - 명령어: sudo yum install docker 2. 도커 설치가 완료 되었으면 도커 서비스를 실행합니다. dev-t-blog.tistory.com 1. 명령어 - docker run --ulimit nofile=66000:66000 -d -it --name docker-statsd-influxdb-grafana -p 3003:3003 -p 3004:8888 -p 8086:8086 -p 22022:.. 2021. 2. 2.
[Docker] Docker 무작정 따라하기 (2) - Docker Compose Docker 무작정 따라하기 (2) - Docker Compose 0. 출처 docs.docker.com/compose/gettingstarted/ Get started with Docker Compose docs.docker.com 1. 단계요약 - 프로젝트 디렉토리 생성 및 실행파일(app.py) 생성 - app.py 실행에 필요한 패키지 requirements.txt 생성 - Dockerfile 생성 - Docker compose 실행 2. 과정 1) 디렉토리 생성 2) Dockerfile 생성 4) docker-compose.yml 작성 및 디렉토리 현황 5) docker-compose up 6) 생성한 프로젝트 등록 및 실행 2021. 1. 29.
728x90