20 lines
475 B
YAML
20 lines
475 B
YAML
services:
|
|
code-server:
|
|
image: codercom/code-server:latest
|
|
container_name: live-code-server
|
|
restart: unless-stopped
|
|
environment:
|
|
PASSWORD: "${VSCODE_SERVER_PASSWORD:-12345678}"
|
|
HOME: /home/coder
|
|
command:
|
|
- --bind-addr
|
|
- 0.0.0.0:8080
|
|
- --auth
|
|
- password
|
|
- /workspace
|
|
ports:
|
|
- "${VSCODE_SERVER_PORT:-8440}:8080"
|
|
volumes:
|
|
- ./config:/home/coder/.local/share/code-server
|
|
- ../..:/workspace
|