-
Notifications
You must be signed in to change notification settings - Fork 2
Run In Docker
Amy Boyer edited this page Aug 22, 2019
·
2 revisions
Ensure that you have a modern-ish version of docker installed. Simply run
docker build -t theia .
to build the image
If you have an image built, you can run it with:
docker run theia
To create the environment, including the postgres and redis servers and a web app and worker node
docker-compose up &
To, for example, create a second worker node
docker-compose up --scale worker=2 &
To halt instances
docker-compose down
Note that you can also remove the volumes (they will need to be recreated next time)
docker-compose down -v