I am trying to deploy the code-server image of linuxserver with code-server-golang mod.
But it installs the go 1.22.4 and not 1.23.2 which is the latest stable version. I’m not sure what am i doing wrong here.
services:
code-server:
image: lscr.io/linuxserver/code-server:latest
container_name: code-server
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
# - PASSWORD= #optional
# - HASHED_PASSWORD= #optional
- SUDO_PASSWORD=sudopass #optional
- DOCKER_MODS=linuxserver/mods:code-server-python3|linuxserver/mods:code-server-golang
- PROXY_DOMAIN=code.mydomain.com
- DEFAULT_WORKSPACE=/config/workspace #optionalvolumes: - config:/config - /var/lib/docker:/docker - /mnt/nvme/code-server:/mnt ports: - 8443:8443 dns: - 8.8.8.8 - 8.8.4.4 restart: unless-stopped logging: options: max-size: 1m
volumes:
config:
I have tried to enter the 1.23 manually but so golang doesn’t get installed at all.
Can someone help me with that?
Best Regards, Shahram