Ver Fonte

Creating sample yml file for development

Alax Alves há 5 anos atrás
pai
commit
1215245b0c
1 ficheiros alterados com 13 adições e 0 exclusões
  1. 13 0
      docker-compose.yml

+ 13 - 0
docker-compose.yml

@@ -0,0 +1,13 @@
+version: '3.5'
+services:
+  api:
+    container_name: shopify_api
+    image: ruby:2.4.6
+    working_dir: /shopify_api
+    volumes:
+      - .:/shopify_api
+      - bundle:/usr/local/bundle
+    command: bash -c "bundle install && tail -f /dev/null"
+
+volumes:
+  bundle: