Compare commits

...

2 Commits

Author SHA1 Message Date
Chris King
25937216ab Change Authentik server image to use env variables again 2025-01-23 08:19:27 -08:00
Chris King
bcc325afe1 Remove unused code-server config 2025-01-22 22:38:10 -08:00
2 changed files with 1 additions and 26 deletions

View File

@@ -30,7 +30,7 @@ services:
volumes:
- redis:/data
app:
image: ghcr.io/goauthentik/server:2024.12.2
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.2}
restart: unless-stopped
command: server
environment:

View File

@@ -1,25 +0,0 @@
name: code-server
services:
app:
environment:
DOCKER_USER: chris
image: codercom/code-server:latest
networks:
- proxy-net
ports:
- "8020:8080"
expose:
- "8020"
- "8080"
restart: unless-stopped
user: "1000:1000"
volumes:
- /home/chris/.local:/home/coder/.local
- /home/chris/.config:/home/coder/.config
- /docker:/docker
- /code:/code
- /home/chris:/home/coder/chris-home
networks:
proxy-net:
external: true