From 6a8c560d21429108731b115f93ac8a4ead012917 Mon Sep 17 00:00:00 2001 From: かひわし4(バージョン1) Date: Wed, 24 Oct 2018 14:36:42 +0900 Subject: Docker関連の修正 (#2997) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Modify Dockerfile and docker-compose.yml * Fix MongoDB connection error * Use alpine-3.8 instead of alpine-edge as base image * Modify install packages * Modify Mongodb image tag name * Update Docker documents * Add 'Download misskey' paragraph * Make redis optional for Docker --- docker-compose.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index 1b2e6c9fc3..7ff8f6a268 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: restart: always links: - mongo - - redis +# - redis # - es ports: - "127.0.0.1:3000:3000" @@ -14,18 +14,18 @@ services: - internal_network - external_network - redis: - restart: always - image: redis:4.0-alpine - networks: - - internal_network +# redis: +# restart: always +# image: redis:4.0-alpine +# networks: +# - internal_network ### Uncomment to enable Redis persistance -# volumes: -# - ./redis:/data +## volumes: +## - ./redis:/data mongo: restart: always - image: mongo:4.1-bionic + image: mongo:4.1 networks: - internal_network environment: -- cgit v1.2.3-freya