wsl: update compose.yml

This commit is contained in:
Jaewook Lee
2024-08-20 02:23:23 +09:00
parent cc03bc959b
commit 248bfd39d3

View File

@@ -165,7 +165,7 @@ services:
command: command:
- | - |
apk add openssh-client apk add openssh-client
ssh $USER@localhost '~/.venv/bin/jupyter lab --IdentityProvider.token=""' ssh -tt $USER@localhost '~/.venv/bin/jupyter-lab --IdentityProvider.token=""'
EOF EOF
docker compose up -d # Jupyter 서버 시작 docker compose up -d # Jupyter 서버 시작
@@ -188,7 +188,7 @@ docker compose up -d # Jupyter 서버 시작
8. `command:`: 8. `command:`:
- `apk add openssh-client`: SSH 클라이언트를 설치합니다. - `apk add openssh-client`: SSH 클라이언트를 설치합니다.
- `ssh $USER@localhost '~/.venv/bin/jupyter lab --IdentityProvider.token=""`': SSH를 통해 Jupyter Lab을 실행합니다. - `ssh -tt $USER@localhost '~/.venv/bin/jupyter lab --IdentityProvider.token=""`': SSH를 통해 Jupyter Lab을 실행합니다.
이 설정은 다음과 같은 이점이 있습니다: 이 설정은 다음과 같은 이점이 있습니다: