Sign inSign up

yusanish/crowi

By yusanish

Updated over 9 years ago

crowi 1.6.1 on Docker

Image
0

267

yusanish/crowi repository overview

crowi

Crowi wiki 1.6.1 on Docker

This image aims to support crowi 1.6.1 Forked from bakudankun/crowi - Docker Hub Thank you very much bakudankun for publishing the image. If you can use Japanese, the forked page explains more specify. It makes easy to understand this image.

Usage

If you have already MongoDB, Redis and Elasticsearch images, please confident about the versions. This Docker image is only working under the specific below versions.

  • mongo: 3
  • redis: 3.0 (can be alpine)
  • elasticsearch: 2 (can be alpine)

Using docker-compose

version: '2'

services:
  crowi:
    image: yusanish/crowi
    container_name: crowi
    links:
      - mongo:db
      - redis:redis
      - elasticsearch:es
    port
      - 8080:3000
    volumes:
      - "/opt/crowi:/data"

  mongo:
    image: mongo:3
    container_name: crowi-mongo

  redis:
    image: redis:3.0-alpine
    container_name: crowi-redis

  elasticsearch:
    image: elasticsearch:2-alpine
    container_name: crowi-elasticsearch
    entrypoint:
      - bash
      - -c
      - >-
        bin/plugin list | grep -q analysis-kuromoji
        || bin/plugin install analysis-kuromoji
        && exec /docker-entrypoint.sh $$0 $$@
    command: elasticsearch

Tag summary

Content type

Image

Digest

Size

353.3 MB

Last updated

over 9 years ago

docker pull yusanish/crowi