Skip to content

Theia applications - docker images and desktop distributions

License

Notifications You must be signed in to change notification settings

CiciDongxue/theia-apps

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Theia applications

Build Status

Theia is a platform to develop Cloud & Desktop IDEs with modern web technologies.

This repository contains example Theia applications based on published Theia extension packages.

Theia Docker

dockeri.co

theiaide/theia image contains an example of Theia based IDE for Web Developers.

How to use theiaide/theia image?

At the moment Theia is still in active development. It is recommended to use theiaide/theia:next image to have a look at the current state.

This script pulls the image and runs Theia IDE on http://localhost:3000 with the current directory as a workspace. The option of --init is added to fix the defunct process problem.

# Linux, macOS, or PowerShell
docker run -it --init -p 3000:3000 -v "$(pwd):/home/project:cached" theiaide/theia:next

# Windows (cmd.exe)
docker run -it --init -p 3000:3000 -v "%cd%:/home/project:cached" theiaide/theia:next

You can pass additional arguments to Theia after the image name, for example to enable debugging:

# Linux, macOS, or PowerShell
docker run -it --init -p 3000:3000 --expose 9229 -p 9229:9229 -v "$(pwd):/home/project:cached" theiaide/theia:next --inspect=0.0.0.0:9229

# Windows (cmd.exe)
docker run -it --init -p 3000:3000 --expose 9229 -p 9229:9229 -v "%cd%:/home/project:cached" theiaide/theia:next --inspect=0.0.0.0:9229

Image Variants

theiaide/theia:latest

This image is based on the latest stable released version.

theiaide/theia:<version>

This image is based on the given stable released version.

theiaide/theia:next

This image is based on the nightly published version.

theiaide/theia:<version>-next.<commit hash>

This image is based on the given nightly published version.

Theia Desktop

TBD

License

Apache 2.0

About

Theia applications - docker images and desktop distributions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 32.6%
  • TypeScript 31.4%
  • JavaScript 17.7%
  • Shell 16.1%
  • Makefile 1.6%
  • Rust 0.6%