homeLab docker services

This commit is contained in:
2024-08-13 08:08:39 +00:00
commit 1ac68b12a0
15 changed files with 451 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
---
services:
code-server:
image: lscr.io/linuxserver/code-server:latest
container_name: code-server
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- PASSWORD= #optional
- HASHED_PASSWORD= #optional
- SUDO_PASSWORD=password #optional
- SUDO_PASSWORD_HASH= #optional
- PROXY_DOMAIN=code-server.my.domain
- DEFAULT_WORKSPACE=/config/workspace #optional
volumes:
- ./config:/config
ports:
- 8590:8443
restart: unless-stopped