21 lines
413 B
YAML
21 lines
413 B
YAML
---
|
|
version: "2.1"
|
|
services:
|
|
vscodium:
|
|
image: lscr.io/linuxserver/vscodium:latest
|
|
container_name: vscodium
|
|
cap_add:
|
|
- IPC_LOCK
|
|
security_opt:
|
|
- seccomp:unconfined #optional
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
volumes:
|
|
- /path/to/config:/config
|
|
ports:
|
|
- 3000:3000
|
|
- 3001:3001
|
|
shm_size: "1gb"
|
|
restart: unless-stopped |