]> cat aescling's git repositories - mastodon.git/commitdiff
Switch docker-compose to version 3. (#2747)
authorValentin Ouvrard <valentin210594@gmail.com>
Thu, 4 May 2017 13:56:05 +0000 (00:56 +1100)
committerEugen Rochko <eugen@zeonfederated.com>
Thu, 4 May 2017 13:56:05 +0000 (15:56 +0200)
* Switch docker-compose to version 3.

It allow possibility to Deploy Mastodon in a Swarm cluster directly from the compose file.

* switch to compose v3 without depend.

docker-compose.yml

index 1a8debb46325f51028484a2e197c02c34b5d15bf..cb49fda971969bbadfb96d2200dba8df60cea71b 100644 (file)
@@ -1,4 +1,4 @@
-version: '2'
+version: '3'
 services:
 
   db:
@@ -15,13 +15,9 @@ services:
 #    volumes:
 #      - ./redis:/data
 
-  app:
+  web:
     build: .
     image: gargron/mastodon
-
-  web:
-    extends:
-      service: app
     restart: always
     env_file: .env.production
     command: bundle exec rails s -p 3000 -b '0.0.0.0'
@@ -36,8 +32,8 @@ services:
       - ./public/system:/mastodon/public/system
 
   streaming:
-    extends:
-      service: app
+    build: .
+    image: gargron/mastodon
     restart: always
     env_file: .env.production
     command: npm run start
@@ -48,8 +44,8 @@ services:
       - redis
 
   sidekiq:
-    extends:
-      service: app
+    build: .
+    image: gargron/mastodon
     restart: always
     env_file: .env.production
     command: bundle exec sidekiq -q default -q mailers -q pull -q push