22 lines
531 B
YAML
22 lines
531 B
YAML
version: "2.1"
|
|
|
|
services:
|
|
code-server:
|
|
image: lscr.io/linuxserver/code-server:latest
|
|
container_name: code-server
|
|
environment:
|
|
- PUID=0
|
|
- PGID=0
|
|
- TZ=Europe/Berlin
|
|
- PASSWORD=KXXLof4vgvG7cfzt
|
|
- SUDO_PASSWORD=13371337
|
|
- PROXY_DOMAIN=code.zinomedia.de
|
|
- DISABLE_TELEMETRY
|
|
- DEFAULT_WORKSPACE=/host
|
|
volumes:
|
|
- /home/zino/projects/dockers/code/volumes/config:/config
|
|
- /:/host
|
|
ports:
|
|
- 8443:8443
|
|
restart: unless-stopped
|
|
network_mode: "host" |