diff --git a/live.yml b/live.yml index bd819da..a634b9d 100644 --- a/live.yml +++ b/live.yml @@ -23,19 +23,12 @@ services: user: django depends_on: - postgres - # - redis command: /live-gunicorn-mhackspace.sh env_file: .env volumes: - .:/app - sockets:/data/sockets - node: - image: node:7-onbuild - command: npm install - volumes: - - ./:/usr/src/app - redis: image: redis:latest @@ -62,3 +55,10 @@ services: - postgres - redis command: celery -A mhackspace.celeryapp beat -l INFO + + bucket: + image: minio/minio + env_file: .env + volumes: + - ./buckets:/data + command: server /data diff --git a/stage.yml b/stage.yml index 7760e90..16ac030 100644 --- a/stage.yml +++ b/stage.yml @@ -30,12 +30,6 @@ services: - .:/app - sockets:/data/sockets - node: - image: node:7-onbuild - command: npm install - volumes: - - ./:/usr/src/app - redis: image: redis:latest @@ -62,3 +56,10 @@ services: - postgres - redis command: celery -A mhackspace.celeryapp beat -l INFO + + bucket: + image: minio/minio + env_file: .env + volumes: + - ./buckets:/data + command: server /data