Docker-MOD:Code-server-golang does not install the latest version!

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. :frowning:

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 #optional

volumes:
  - 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

Looks like our trigger broke so it stopped pushing new go releases a little while ago. Thanks for the heads up. We’ll get it fixed shortly.

1 Like

All fixed now.

1.22.8, 1.23.1 and 1.23.2 have been pushed with 1.23.2 as latest

1 Like

thank you :pray:t3:

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.