All Projects → wekan → Wekan Mongodb

wekan / Wekan Mongodb

Licence: mit
Docker: Wekan <=> MongoDB

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Wekan Mongodb

Meteor Collection Hooks
Meteor Collection Hooks
Stars: ✭ 641 (+393.08%)
Mutual labels:  mongodb, meteor
Docker Flask Mongodb Example
Uses docker compose with a python flask microservice and MongoDB instance to make a sample application
Stars: ✭ 49 (-62.31%)
Mutual labels:  mongodb, docker-compose
Docker Taiga
Docker container for Taiga https://taiga.io
Stars: ✭ 14 (-89.23%)
Mutual labels:  kanban, docker-compose
Pup
The Ultimate Boilerplate for Products.
Stars: ✭ 563 (+333.08%)
Mutual labels:  mongodb, meteor
User.api
集成网关、身份认证、Token授权、微服务、.netcore等的基于CQRS的微服务开发框架示例
Stars: ✭ 109 (-16.15%)
Mutual labels:  mongodb, docker-compose
Meteor Astronomy
Model layer for Meteor
Stars: ✭ 608 (+367.69%)
Mutual labels:  mongodb, meteor
Meteor Collection2
A Meteor package that extends Mongo.Collection to provide support for specifying a schema and then validating against that schema when inserting and updating.
Stars: ✭ 1,020 (+684.62%)
Mutual labels:  mongodb, meteor
Wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
Stars: ✭ 17,648 (+13475.38%)
Mutual labels:  kanban, meteor
Meteor
Meteor, the JavaScript App Platform
Stars: ✭ 42,739 (+32776.15%)
Mutual labels:  mongodb, meteor
Nodejs Backend Architecture Typescript
Node.js Backend Architecture Typescript - Learn to build a backend server for Blogging platform like Medium, FreeCodeCamp, MindOrks, AfterAcademy - Learn to write unit and integration tests - Learn to use Docker image - Open-Source Project By AfterAcademy
Stars: ✭ 1,292 (+893.85%)
Mutual labels:  mongodb, docker-compose
Meteor Publish Composite
Meteor.publishComposite provides a flexible way to publish a set of related documents from various collections using a reactive join
Stars: ✭ 546 (+320%)
Mutual labels:  mongodb, meteor
4minitz
4Minitz - Simply a decent free webapp for taking collaborative meeting minutes. (Keywords: Meeting Protocols, Action Items, Open Source). Check it out on our demo server:
Stars: ✭ 125 (-3.85%)
Mutual labels:  mongodb, meteor
Madclones
A collection of frameworks that I love with a strong focus on clean code, testing, software architecture/design and devops.
Stars: ✭ 480 (+269.23%)
Mutual labels:  mongodb, docker-compose
Clean Ts Api
API em NodeJs usando Typescript, TDD, Clean Architecture, Design Patterns e SOLID principles
Stars: ✭ 619 (+376.15%)
Mutual labels:  mongodb, docker-compose
Nodejs Api Boilerplate
A boilerplate for kickstart your nodejs api project with JWT Auth and some new Techs :)
Stars: ✭ 364 (+180%)
Mutual labels:  mongodb, docker-compose
Antvueblogfront
🔥使用Vue全家桶 + Egg + Mongodb 写的个人网站博客。使用docker compose 一键部署。(最近比较忙,部署还有点问题,后期补上)
Stars: ✭ 36 (-72.31%)
Mutual labels:  mongodb, docker-compose
Springy Store Microservices
Springy Store is a conceptual simple μServices-based project using the latest cutting-edge technologies, to demonstrate how the Store services are created to be a cloud-native and 12-factor app agnostic. Those μServices are developed based on Spring Boot & Cloud framework that implements cloud-native intuitive, design patterns, and best practices.
Stars: ✭ 318 (+144.62%)
Mutual labels:  mongodb, docker-compose
Nosqlclient
Cross-platform and self hosted, easy to use, intuitive mongodb management tool - Formerly Mongoclient
Stars: ✭ 3,399 (+2514.62%)
Mutual labels:  mongodb, meteor
Fullstack Shopping Cart
MERN stack shopping cart, written in TypeScript
Stars: ✭ 82 (-36.92%)
Mutual labels:  mongodb, docker-compose
Kepler
The open source full-stack geosocial network platform
Stars: ✭ 125 (-3.85%)
Mutual labels:  mongodb, meteor

Docker: Wekan <=> MongoDB

Screenshot

Screenshot of Wekan

Install

  1. Install docker-compose.

  2. Clone this repo.

git clone https://github.com/wekan/wekan-mongodb.git
cd wekan-mongodb

3a) Detached mode:

docker-compose up -d

3b) Running attached to console, so Ctrl-c stops it:

docker-compose up
  1. Wekan is at http://localhost (port 80)

  2. MongoDB is at 127.0.0.1:27017

  3. Wekan and databases bind to address 0.0.0.0 so could be also available to other computers in network. I have not tested this.

  4. Restore your MongoDB data.

Backup before upgrading

Backup all data from MongoDB

Upgrading Wekan

  1. In wekan-mongodb directory, stop Wekan:
docker-compose stop
  1. Check what is CONTAINER ID of wekanteam/wekan:latest container. Then remove container.
docker ps
docker rm CONTAINER-ID-HERE
  1. Check Docker images, what is IMAGE ID of quay.io/wekan/wekan, and remove quay.io/wekan/wekan image:
docker images
docker rmi IMAGE-ID-HERE
  1. If you have made backups of MongoDB container to outside of Docker, and want to upgrade MongoDB, you could also delete MongoDB container and image.

  2. Start Wekan again in background:

docker-compose up -d
  1. You can also check container logs:
docker ps
docker logs CONTAINER-ID-OF-Wekan-or-MongoDB-HERE
  1. Restore MongoDB data if needed.

Feedback

Create GitHub issue

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].