Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ### 우분투 16버전에서 vscode가 설치 안되는 문제 vscode 2017.04 버전을 설치한다. - https://code.visualstudio.com/updates/v1_12 ### 이미지 생성 Dockerfile ```shell FROM alpine RUN apk add --update redis CMD ["redis-server"] ``` command ```shell sudo docker build -t hsbae/redis-server:1.0 . ``` ### 이미지 목록 ```shell docker images ``` ### 컨테이너 실행 ```shell docker run hsbae/redis-server ``` ```shell docker exec -it <container id> redis-cli ``` ```shell docker run -it ubuntu:16.04 ``` ### Docker file 생성 ``` FROM ubuntu:16.04 RUN apt-get update RUN apt-get install redis-server -y CMD ["redis-server"] ``` open/우분투-16버전에서-vscode가-설치-안되는-문제.txt Last modified: 2024/10/05 06:15by 127.0.0.1