Sha256: 1f79bce04c169f21de549206bd82138225b4918fe839d470e4e647b114fdde98
Contents?: true
Size: 621 Bytes
Versions: 21
Compression:
Stored size: 621 Bytes
Contents
version: '3' services: web: build: context: ../../ dockerfile: ./sample-apps/leaky-bucket-app/Dockerfile command: bash -c "bundle exec rails s -p 3000 -b '0.0.0.0'" depends_on: - redis ports: - "3000:3000" volumes: - .:/leaky-bucket-app entrypoint: ./docker-entrypoint.sh redis: image: 'redis:4.0-alpine' command: redis-server resque: build: context: ../../ dockerfile: ./sample-apps/leaky-bucket-app/Dockerfile command: bundle exec rake environment resque:work QUEUE=* volumes: - .:/fitmo - ../fitmo-core:/fitmo-core
Version data entries
21 entries across 21 versions & 1 rubygems