Docker

[Docker] 개발자에게 필요한 기능은 다 있다! IT-Tools 도커로 구축하기

IT-PAPA 2023. 8. 19. 14:38
반응형

IT Tools는 개발자 및 IT 분야에서 일하는 사람들을위한 편리한 온라인 도구의 무료 오픈 소스 모음입니다. 여기에는 토큰 생성기, 케이스 변환기, 기본 변환기 QR 코드 생성기, Git 치트시트, lorem ipsum 생성기가 포함됩니다.

그외 더 많은 기능들을 제공합니다.

CorentinTh/it-tools: Collection of handy online tools for developers, with great UX. (github.com)

 

GitHub - CorentinTh/it-tools: Collection of handy online tools for developers, with great UX.

Collection of handy online tools for developers, with great UX. - GitHub - CorentinTh/it-tools: Collection of handy online tools for developers, with great UX.

github.com

 

IT Tools - Handy online tools for developers (it-tools.tech)

 

IT Tools - Handy online tools for developers

Collection of handy online tools for developers, with great UX. IT Tools is a free and open-source collection of handy online tools for developers & people working in IT.

it-tools.tech

 

[Docker] 도커의 모든 것, 도커 추천 이미지!!! (tistory.com)

 

[Docker] 도커의 모든 것, 도커 추천 이미지!!!

필자는 이때까지 docker로 구축한 모든 목록을 이 블로그에 담았다. 앞으로도 이 페이지는 필자가 도커를 구축할 때마다 업데이트하려고 하니, 즐겨찾기 해두면 나쁘지 않을 거 같다. 유용하게 사

betwe.tistory.com

 

docker-compose.yml 파일

docker-compose.yml
version: '3.3'
services:
  it-tools:
    container_name: it-tools
    restart: unless-stopped
    ports:
        - '8080:80'
    image: 'corentinth/it-tools:latest'

 

docker-compose 시작

docker-compose up -d

 

서비스 URL 접속

http://[서버 IP]:8080

서비스 URL 접속
서비스 URL 접속

 

docker-comopse 중지

docker-compose down
728x90
반응형
LIST