how to enable the Ports tab beside terminal tab on UI #5963
Replies: 5 comments 5 replies
-
What? I can see one when I run my code-server. What version of code-server do you use? |
Beta Was this translation helpful? Give feedback.
-
u can update to 4.9.1 |
Beta Was this translation helpful? Give feedback.
-
(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. |
Beta Was this translation helpful? Give feedback.
-
This is the docker file `version: '2.2'
|
Beta Was this translation helpful? Give feedback.
-
It got resolved I have updated it to 4.9.1 but one more issue is When I run python flask application it is showing running on 5000 but when I check the running processes on my machine, I dont see any process running on 5000 port. |
Beta Was this translation helpful? Give feedback.
-
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}"
Beta Was this translation helpful? Give feedback.
All reactions