SQLTools shows blank page code-server installation via docker
Is there an existing issue for this?
- [x] I have searched the existing issues
OS/Web Information
- Web Browser: Firefox
- Local OS: Win11
- Remote OS: Ubuntu 24.04
- Remote Architecture: amd64
code-server --version: 4.98.2
Steps to Reproduce
- Install SQLTools + SQLTools MySQL/MariaDB/...
- Go to SQLTools
- Click on "Add New Connection"
- Opens a new "view/window" but it's copmpletely blank
Expected
Options for adding a new database connection should appear
Actual
Nothing.
Logs
Screenshot/Video
https://github.com/user-attachments/assets/2c4bd54d-100d-46ad-8fb9-365a6219cb28
Does this bug reproduce in native VS Code?
I did not test native VS Code
Does this bug reproduce in GitHub Codespaces?
I did not test GitHub Codespaces
Are you accessing code-server over a secure context?
- [ ] I am using a secure context.
Notes
I've tried adding a database connection in settings.json. However, whenever I execute a query it returns again a blank page.
This is my compose file:
---
services:
code-server:
image: ghcr.io/linuxserver/code-server:4.98.2
container_name: code-server
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- PASSWORD=123 #optional
- HASHED_PASSWORD= #optional
- SUDO_PASSWORD=123 #optional
- SUDO_PASSWORD_HASH= #optional
- PROXY_DOMAIN=code-server.my.domain #optional
- DEFAULT_WORKSPACE=/workspace #optional
volumes:
- ./config:/config
- ./workspace:/workspace
#ports:
#- 8443:8443
restart: unless-stopped
networks:
- starrnet
networks:
starrnet:
external: true
- For
localhost/127.0.0.1HTTP is sufficient- For anything else you need TLS encryption
- This means providing a secure connection over HTTPS
ℹ Use a reverse proxy like Caddy, Nginx, Træfik, etc.
Originally posted by @benz0li in https://github.com/coder/code-server/issues/7168#issuecomment-2597436598
Please be aware that the image of this repository is codercom/code-server and not linuxserver/code-server.
Please open issues regarding linuxserver/code-server at https://github.com/linuxserver/docker-code-server/issues.
I am so sorry. I didn't realize of that. I am going to use your image. Thanks
Closing since it looks like the issue is the lack of TLS causing certain browser features to be unavailable. Let me know if I got it wrong.