본문 바로가기

티스토리챌린지5

LocalAI 설치 LocalAI인터넷 없이 Local에서 AI 활용 가능다양한 모델들도 쉽게 다운로드 하여 활용 가능GPU 필요하지 않음공식 사이트https://github.com/mudler/LocalAI GitHub - mudler/LocalAI: :robot: The free, Open Source alternative to OpenAI, Claude and others. Self-hosted and local-first. Dr:robot: The free, Open Source alternative to OpenAI, Claude and others. Self-hosted and local-first. Drop-in replacement for OpenAI, running on consumer-grade hardw.. 2024. 11. 23.
Harbor 스캔 적용(Trivy) Containerd 이미지를 harbor push 할때 해당 이미지가 취약점이 존재하는 체크  harbor 설치 방법https://monta010.tistory.com/164 Harbor 설치harbor에서 제공하는 offline 형태로 설치하는 방식설치 시 docker-compoose 형태로 배포되어 "docker-compose" 설치 필요 docker-compose 설치sudo apt updatesudo apt-get install -y ca-certificates \ curl \ software-properties-commonmonta010.tistory.com  기본적으로 harbor 설치할 떄는 Trivy 설치 되지 않음설치 시 별도 옵션을 통하여 설치 진행해야 함   Trivy 설치옵션 추가하.. 2024. 11. 20.
Harbor 설치 harbor에서 제공하는 offline 형태로 설치하는 방식설치 시 docker-compoose 형태로 배포되어 "docker-compose" 설치 필요 docker-compose 설치sudo apt updatesudo apt-get install -y ca-certificates \ curl \ software-properties-common \ apt-transport-https \ gnupg \ lsb-releasecurl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpecho \ "deb [arch=a.. 2024. 11. 20.
[zabbix] zabbix Server 설치 zabbix 자체적으로 제공하는 docker-compose를 통한 설치 가이드설치 전 docker-compose version : 2.30.3 이상으로 진행(낮은 버전일 경우 설치 안됨) Zabbix docker gituhb https://github.com/zabbix/zabbix-docker GitHub - zabbix/zabbix-docker: Official Zabbix DockerfilesOfficial Zabbix Dockerfiles. Contribute to zabbix/zabbix-docker development by creating an account on GitHub.github.com  Zabbix docker-compose 코드 clonegit clone https://githu.. 2024. 11. 14.
[terraform] terraform module( VPC) 사용 terraform varialbe -> moudel 방식 적용 Providor 정의 terraform { required_providers { aws = { source = "hashicorp/aws" version = ">= 5.6" # which means any version equal & above } } required_version = ">= 0.13"}provider "aws" { region = "ap-northeast-2" access_key = "" secret_key = ""}   Module VPCmodule "vpc" { source = "terraform-aws-modules/vpc/aws" version = "5.15.0"}   t.. 2024. 11. 13.