updated vs code, code server

This commit is contained in:
2024-08-31 15:07:28 -07:00
parent e5a26a9513
commit 3c3536d4df
5 changed files with 37 additions and 13 deletions
+7
View File
@@ -0,0 +1,7 @@
# code-server
Last Updated: Sat August 31, 2024 14:58:23 PDT
## Overview
Proxy Port: 8443
+16
View File
@@ -0,0 +1,16 @@
version: '3.8'
services:
code-server:
image: ${CODE-SERVER_IMAGE:-null}
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ:-America/Vancouver}
- PASSWORD=${CODE-SERVER_PASSWORD:-RanDoMChangeMe}
- DEFAULT_WORKSPACE=/data
- PROXY_DOMAIN=${CODE-SERVER_DOMAIN:-localhost}
volumes:
- ${VOL_PATH:-./data}/codeserver:/data
- ${VOL_PATH:-./data}/codeserver-config:/config"
+7
View File
@@ -0,0 +1,7 @@
version: '3.4'
services:
code-server:
extends:
file: ${COOKBOOK}/code-server/docker-compose.yml
service: code-server
+7
View File
@@ -0,0 +1,7 @@
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
VOL_PATH=./data #HELP: volpath
TZ=America/Vancouver
# code-server
CODE-SERVER_IMAGE=lscr.io/linuxserver/code-server:latest
CODE-SERVER_PASSWORD=RanDoMChangeMe #HELP: gen32
CODE-SERVER_DOMAIN=localhost