docker-compose.yml 262 B

12345678910111213
  1. version: '3.5'
  2. services:
  3. api:
  4. container_name: shopify_api
  5. image: ruby:2.6
  6. working_dir: /shopify_api
  7. volumes:
  8. - .:/shopify_api
  9. - bundle:/usr/local/bundle
  10. command: bash -c "bundle install && tail -f /dev/null"
  11. volumes:
  12. bundle: