This guide uses Docker Compose to run Eclipse Theia in containers.
For Docker installation, see Docker.
cat <<'YAML' > docker-compose.yml
services:
app:
image: codercom/code-server:latest
restart: unless-stopped
ports:
- "8080:8080"
environment:
- PASSWORD=change-me
YAML
docker compose up -d
Open http://YOUR-SERVER:8080 and log in with the password.
Any questions?
Feel free to contact us. Find all contact information on our contact page.