fixed up vscode changed default vol to /data for easier testing

This commit is contained in:
2026-04-14 18:53:12 -07:00
parent 546f003a41
commit ff9b9ed313
11 changed files with 96 additions and 33 deletions
+25
View File
@@ -0,0 +1,25 @@
# Code Server
services:
code-server:
image: ${VSCODE_IMAGE:-lscr.io/linuxserver/code-server:latest}
restart: ${VSCODE_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-./data}/vscode/data:/data
- ${VOL_PATH:-./data}/vscode/config:/config
environment:
# App-specific
- PUID=${VSCODE_PUID:-1000}
- PGID=${VSCODE_PGID:-1000}
- PASSWORD=${VSCODE_PASSWORD:-RanDoMChangeMe}
- DEFAULT_WORKSPACE=${DEFAULT_WORKSPACE:-/data}
- PROXY_DOMAIN=${VSCODE_DOMAIN:-localhost}
ports:
- "${VSCODE_PORT:-8443}:8443"
networks:
proxy:
external: true