how to enable the Ports tab beside terminal tab on UI #5963
Unanswered
vikaskonaparthi
asked this question in
Q&A
Replies: 5 comments 5 replies
|
u can update to 4.9.1 |
0 replies
|
(this is a sort of continuation since #5963 (comment)) It looks like you use Docker here, can you please share us your Dockerfile code? I think it is related to the update part or the tag you use. |
0 replies
|
This is the docker file `version: '2.2'
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
How can I enable the Ports tab in the Code-Server web UI when using a Docker Compose file to create the container?
I am using this docker compose file
`version: '2.2'
services:
codeserver:
container_name: "${containerName}"
image: "${codeserverImage}"
environment:
PASSWORD: "${password}"
cpus: "${CPUS_USG}"
mem_limit: "${MEMORY_LIM}"
All reactions