Skip to content
This repository was archived by the owner on May 7, 2023. It is now read-only.

Latest commit

 

History

History
38 lines (32 loc) · 1.72 KB

README.md

File metadata and controls

38 lines (32 loc) · 1.72 KB

code-server

Github Stars GitHub readme Docker Stars Docker Hub

Build Status Version Docker Pulls

code-server Docker Image based on Debian Testing

For configuration see github.com/cdr/code-server

Docker compose

---
version: "3"
services:
  code-server:
    image: supersandro2000/code-server
    security_opt:
      - seccomp:unconfined
    mem_limit: 2G
    volumes:
      - $HOME/code-server:/home/coder/.local/share/code-server
      - $HOME/go/bin:/home/coder/go/bin
      - $HOME/project:/home/coder/project
    environment:
      - PASSWORD=super_secret_password
    command:
      - --auth
      - password
      - --disable-telemetry
      - --disable-updates