Sha256: c4f6b930bd117a95a347119365a7d189fc3c815380d6812c6bed793946e547c2
Contents?: true
Size: 817 Bytes
Versions: 5
Compression:
Stored size: 817 Bytes
Contents
version: '2.1' services: app: build: . env_file: ./.env.local command: bash ./bin/start-app.sh volumes: - .:/app ports: - "3000:3000" links: - postgres <% unless @options[:skip_sidekiq] %> - redis <% end %> volumes_from: - box box: image: busybox volumes: - /gems_box postgres: image: postgres:9.5 ports: - "5433:5432" <% unless @options[:skip_sidekiq] %> redis: image: redis:3.2 env_file: ./.env.local command: redis-server ports: - '6380:6379' volumes: - ./tmp/data:/data sidekiq: build: . env_file: ./.env.local volumes: - .:/app volumes_from: - box links: - postgres - redis command: bash ./bin/start-sidekiq.sh <% end %>
Version data entries
5 entries across 5 versions & 1 rubygems