You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	update wekan
This commit is contained in:
		| @@ -6,34 +6,11 @@ wekan | ||||
| [Wekan][1] is an open-source kanban board which allows a card-based task and | ||||
| to-do management, similar to tools like WorkFlowy or Trello. | ||||
|  | ||||
| ## docker-compose.yml | ||||
|  | ||||
| ```yaml | ||||
| wekan: | ||||
|   image: wekanteam/wekan | ||||
|   ports: | ||||
|     - "8081:80" | ||||
|   links: | ||||
|     - mongo | ||||
|   environment: | ||||
|     - MONGO_URL=mongodb://mongo/wekan | ||||
|     - ROOT_URL=https://todo.easypi.pro | ||||
|   restart: always | ||||
|  | ||||
| mongo: | ||||
|    image: mongo | ||||
|    ports: | ||||
|     - "27017:27017" | ||||
|    volumes: | ||||
|      - ./data:/data/db | ||||
|   restart: always | ||||
| ``` | ||||
|  | ||||
| ## Up and Running | ||||
|  | ||||
| ```bash | ||||
| $ docker-compose up -d | ||||
| $ curl http://localhost:8081 | ||||
| $ curl http://localhost:8080 | ||||
| ``` | ||||
|  | ||||
| ## Admin Panel » Settings | ||||
|   | ||||
| @@ -1,18 +1,33 @@ | ||||
| wekan: | ||||
|   image: wekanteam/wekan | ||||
|   ports: | ||||
|     - "8081:80" | ||||
|   links: | ||||
|     - mongo | ||||
|   environment: | ||||
|     - MONGO_URL=mongodb://mongo/wekan | ||||
|     - ROOT_URL=https://todo.easypi.pro | ||||
|   restart: always | ||||
| # | ||||
| # https://raw.githubusercontent.com/wekan/wekan/master/docker-compose.yml | ||||
| # | ||||
|  | ||||
| mongo: | ||||
|   image: mongo | ||||
|   ports: | ||||
|    - "27017:27017" | ||||
|   volumes: | ||||
|     - ./data:/data/db | ||||
|   restart: always | ||||
| version: "3.8" | ||||
|  | ||||
| sevices: | ||||
|  | ||||
|   wekan: | ||||
|     image: wekanteam/wekan | ||||
|     ports: | ||||
|       - "8080:8080" | ||||
|     environment: | ||||
|       - MONGO_URL=mongodb://mongo/wekan | ||||
|       - ROOT_URL=https://wekan.easypi.pro | ||||
|       - MAIL_URL=smtp://user:pass@mailserver.example.com:25/ | ||||
|       - MAIL_FROM=noreply.wekan@mydomain.com | ||||
|       - WITH_API=true | ||||
|       - RICHER_CARD_COMMENT_EDITOR=false | ||||
|       - CARD_OPENED_WEBHOOK_ENABLED=false | ||||
|       - BIGEVENTS_PATTERN=NONE | ||||
|       - BROWSER_POLICY_ENABLED=true | ||||
|     depends_on: | ||||
|       - mongo | ||||
|     restart: unless-stopped | ||||
|  | ||||
|   mongo: | ||||
|     image: mongo | ||||
|     ports: | ||||
|      - "27017:27017" | ||||
|     volumes: | ||||
|       - ./data:/data/mongo | ||||
|     restart: unless-stopped | ||||
|   | ||||
		Reference in New Issue
	
	Block a user