Sha256: 137487225e7b35970e51dcd5ebc06ecf269f08120fd1d005324d55ae76d0ea47
Contents?: true
Size: 657 Bytes
Versions: 21
Compression:
Stored size: 657 Bytes
Contents
version: '3' services: web: build: context: ../../ dockerfile: ./sample-apps/rate-limits-redis-sample-app/Dockerfile command: bash -c "bundle exec rails s -p 3000 -b '0.0.0.0'" depends_on: - redis ports: - "3000:3000" volumes: - .:/rate-limits-redis-sample-app entrypoint: ./docker-entrypoint.sh redis: image: 'redis:4.0-alpine' command: redis-server resque: build: context: ../../ dockerfile: ./sample-apps/rate-limits-redis-sample-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