Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
code:
image: linuxserver/code-server:4.100.2
image: linuxserver/code-server:4.100.3
container_name: ${CONTAINER_NAME}
restart: always
networks:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is one change in the Docker image version between code-server 4.100.2 and 4.100.3:

  • Previous line:

    image: linuxserver/code-server:4.100.2
    
  • New line:

    image: linuxserver/code-server:4.100.3
    

This update should be performed to keep your container running with the latest features and security improvements released with linuxserver/code-server 4.100.3.

Additionally, I noticed that you added ${CONTAINER_NAME} to the configuration of the code service using environment variables. This allows for dynamic naming of the Container Name based on an environment variable named CONTAINER_NAME, which might enhance portability and flexibility depending on how it's used elsewhere in your deployment process.

Expand Down