This commit is contained in:
zino
2023-11-27 16:16:35 +01:00
parent 293efa9627
commit 719b7188f3
3 changed files with 15 additions and 9 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
# Ignore everything in the volume folder
volume/*
# But not the .gitkeep file
!volume/.gitkeep

View File

@@ -1,4 +1,4 @@
version: "2.1" version: "3.8"
services: services:
code-server: code-server:
@@ -8,15 +8,16 @@ services:
- PUID=0 - PUID=0
- PGID=0 - PGID=0
- TZ=Europe/Berlin - TZ=Europe/Berlin
- PASSWORD=KXXLof4vgvG7cfzt - HASHED_PASSWORD="$argon2i$v=19$m=4096,t=3,p=1$LHTPOlTwt8oLNLIcOWkFSg$QDG1niWmyTDs1bnT+DiYaAXkMZJBnsQ7n4zjprqGZ/A"
- SUDO_PASSWORD=13371337
- PROXY_DOMAIN=code.zinomedia.de
- DISABLE_TELEMETRY - DISABLE_TELEMETRY
- DEFAULT_WORKSPACE=/host - DEFAULT_WORKSPACE=/host
- PROXY_DOMAIN=code.zinomedia.de
volumes: volumes:
- /home/zino/projects/dockers/code/volumes/config:/config - ./volumes/config:/config
- /:/host - /:/host
ports: restart: on-failure
- 8443:8443
restart: unless-stopped networks:
network_mode: "host" web:
external: false
name: web

0
volumes/.gitkeep Normal file
View File