Sha256: 0679d52181f1c797267529ecb0d795413d83fdd81b2346d1479399fa16eb604f
Contents?: true
Size: 788 Bytes
Versions: 7
Compression:
Stored size: 788 Bytes
Contents
version: '3' services: redis: image: redis expose: - 6379 app: command: bin/rails s -p 1111 -e development -b '0.0.0.0' stdin_open: true tty: true build: context: . dockerfile: ./Dockerfile ports: - "1111:1111" environment: REDIS_URL: redis://redis volumes: - .:/gem - bundle-cache:/usr/local/bundle - ..:/local links: - redis - sidekiq sidekiq: command: bin/all_workers stdin_open: true tty: true build: context: . dockerfile: ./Dockerfile environment: RAILS_ENV: development REDIS_URL: redis://redis volumes: - .:/gem - bundle-cache:/usr/local/bundle - ..:/local links: - redis volumes: bundle-cache:
Version data entries
7 entries across 7 versions & 1 rubygems