Skip to content

victorkristof/team-cal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

team-cal

======= A calendar to be shared between teams.

Usage

Start docker-machine:

docker-machine start default

Enable the docker-machine:

eval $(docker-machine env default)

Launch MongoDB with:

docker run -p 27017:27017 --name team-cal-db --volumes-from dbdata -d mongo --storageEngine wiredTiger
mongo 192.168.99.100:27017

Note: Find the port with docker ps and the IP address with docker-machine ip default.

Finally, start the server.

Set up

Database

Data Persistence

We use a full-container approach. The data is stored in a data volume container. Create a new data volume container:

docker create -v /dbdata --name dbdata mongo

You can now store data using --volumes-from dbdata with your mongo container. Read about why it is a good thing.

About

A calendar to be shared between members of a team.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published