Sha256: 396ca12aad9cf294dc0d0065e7799c2c3e8993045482fd019362349741337d71
Contents?: true
Size: 673 Bytes
Versions: 7
Compression:
Stored size: 673 Bytes
Contents
version: '3' services: db: image: postgres:11.5-alpine ports: - 5432:5432 volumes: - postgres:/var/lib/postgresql/data redis: image: redis:5.0.5-alpine ports: - 6379 app-ror4: image: lcms-engine:ror4 # Used to install native gem which solves build errors for nokogumbo and other gems command: bash -c "gem install nokogiri && bundle install && yarn && tail -f /dev/null" env_file: - spec/dummy/.env.docker environment: REDIS_URL: redis://redis:6379/1 volumes: - .:/app - bundle-ror4:/usr/local/bundle depends_on: - db - redis volumes: bundle-ror4: postgres:
Version data entries
7 entries across 7 versions & 1 rubygems