-
-
Notifications
You must be signed in to change notification settings - Fork 55
Deploying with Docker
Fabian Kromer edited this page Mar 17, 2018
·
2 revisions
You will need a MongoDB container to use titra. Here is an example to get started:
docker run --name mongodb -p 27017:27017 mongo
titra needs to be aware of that container, an easy way to achieve this is using --link
docker run --name titra -p 3000:3000 --link mongodb -e MONGO_URL=mongodb://mongodb/titra -e ROOT_URL=http://localhost:3000 kromit/titra
Congratulations! titra should now be up and running at http://localhost:3000