3 Commits
Author SHA1 Message Date
miles 77a4c1bf29 updated the Caddyfile and the docker-compose.yml 2026-01-14 16:53:20 +00:00
miles cbabad1988 Delete test.txt 2026-01-14 15:01:41 +00:00
miles 6bff8f3836 Update docker-compose.yml 2026-01-14 14:43:29 +00:00
3 changed files with 19 additions and 3 deletions
+4
View File
@@ -1,4 +1,8 @@
:4533 {
# Code-Server (VS Code)
handle_path /edit* {
reverse_proxy code-server:8443
}
handle_path /ntfy* {
reverse_proxy ntfy:80
}
+15 -2
View File
@@ -1,4 +1,17 @@
services:
code-server:
image: lscr.io/linuxserver/code-server:latest
container_name: code-server
restart: always
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- PASSWORD=miles-code # Change this to your preferred login password
- DEFAULT_WORKSPACE=/config/workspace
volumes:
- /home/miles/code-config:/config
- /home/miles/projects:/config/workspace # This is where your HTML files will live
caddy:
image: caddy:latest
container_name: caddy
@@ -45,8 +58,8 @@ services:
container_name: gitea
restart: always
environment:
- GITEA__server__ROOT_URL=http://raspberrypi-1.tail46eacb.ts.net:4533/git/
- GITEA__server__APP_URL=http://raspberrypi-1.tail46eacb.ts.net:4533/git/
- GITEA__server__ROOT_URL=http://raspberrypi.tail46eacb.ts.net:4533/git/
- GITEA__server__APP_URL=http://raspberrypi.tail46eacb.ts.net:4533/git/
- GITEA__server__HTTP_PORT=3000
volumes:
- /home/miles/gitea-data:/data
-1
View File
@@ -1 +0,0 @@
this is so u can edit on the web for now