728x90
Visual Studio Code Server
웹브라우저에서 코딩을 할수 있게 해주는 마이크로소프트에서 나온 IDE 툴이다.
실제 Spring boot를 셋팅해서 해보니 실제 웹페이지에서 개발이 가능 했다.
실제로 설치 및 테스트 해보실려면 아래 docker-compose.yml을 남긴다.
version: "3.1"
services:
code-server:
image: lscr.io/linuxserver/code-server:latest
container_name: code-server
# stop 상태가 되지 않는 이상 재시작
restart: always
ports:
- "8443:8443"
- "8080:8080"
environment:
# Container 내의 시간대를 대한민국으로 설정
TZ: Asia/Seoul
# code-space에 진입할 때 비밀번호를 입력하게 할려면 이 내용을 설정
PASSWORD: 0rhdtjdals@
SUDO_PASSWORD: 0rhdtjdals@
# 기본 Workspace 위치 지정 (Container 내 경로로)
DEFAULT_WORKSPACE: /config/workspace
volumes:
# VSCode의 설정이 저장될 위치 -> 컨테이너가 재시작 되어도 설정이 초기화 되지 않>
#- codespace-config:/config
- ./config:/config
# Workspace을 Host와 연결
#- /path/to/your/workspace:/config/workspace
- ./workspace:/config/workspace
volumes:
codespace-config:
https://code.visualstudio.com/
Visual Studio Code - Code Editing. Redefined
Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.
code.visualstudio.com
728x90
'Server > Application' 카테고리의 다른 글
SPROC - 서버 모니터링 구성 참고 (0) | 2023.04.01 |
---|---|
Thingsboard Docker 설치 - IOT 플래폼 (0) | 2023.03.30 |
IMMICH - Google Photo 대체 프로젝트 (0) | 2023.03.29 |
모니터링 솔루션 checkmk (0) | 2023.03.29 |
tiddlywiki 티들리위 (0) | 2023.03.29 |