Sha256: c4252625c968ca75f17476c812ab7cf838bb70f0840571d0b4efa30147b8888d
Contents?: true
Size: 864 Bytes
Versions: 2
Compression:
Stored size: 864 Bytes
Contents
version: "2" services: redis: image: redis:alpine fluentd: image: ruby:2.4-alpine3.6 volumes: - .:/app - bundle:/usr/local/bundle working_dir: /app environment: REDIS_URL: "redis://redis:6379" depends_on: - redis - sidekiq command: ["sh", "./run_fluentd.sh"] test: image: ruby:2.4-alpine3.6 volumes: - .:/app - bundle:/usr/local/bundle working_dir: /app environment: REDIS_URL: "redis://redis:6379" depends_on: - redis - sidekiq command: ["sh", "./run.sh"] sidekiq: build: context: . volumes: - .:/app - bundle:/usr/local/bundle working_dir: /app depends_on: - redis environment: REDIS_URL: "redis://redis:6379" command: ["sh", "./run_sidekiq.sh"] volumes: bundle: driver: local
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-sidekiq_metric-0.1.2 | docker-compose.yml |
fluent-plugin-sidekiq_metric-0.1.1 | docker-compose.yml |