'code-server/docker-compose.yml' toevoegen
This commit is contained in:
parent
6fda7011e0
commit
be8998ecc4
1 changed files with 19 additions and 0 deletions
19
code-server/docker-compose.yml
Normal file
19
code-server/docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# https://hub.docker.com/r/linuxserver/code-server
|
||||||
|
|
||||||
|
---
|
||||||
|
version: "2.1"
|
||||||
|
services:
|
||||||
|
code-server:
|
||||||
|
image: linuxserver/code-server
|
||||||
|
container_name: code-server
|
||||||
|
environment:
|
||||||
|
- PUID=xxxx
|
||||||
|
- PGID=xxxx
|
||||||
|
- TZ=Europe/Amsterdam
|
||||||
|
- PASSWORD=xxxxxxxxxxxx #optional
|
||||||
|
volumes:
|
||||||
|
- ./config2:/config
|
||||||
|
- /docker:/projects/docker
|
||||||
|
ports:
|
||||||
|
- 8443:8443
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in a new issue