Sha256: 38a9f26ca35d260eb8c6756c8043f7246cc4220967e38894bba7280d2eda14e2

Contents?: true

Size: 547 Bytes

Versions: 2

Compression:

Stored size: 547 Bytes

Contents

---
# Docker Compose 2.4 is for local development
# https://www.heroku.com/podcasts/codeish/57-discussing-docker-containers-and-kubernetes-with-a-docker-captain - Source on that.
version: '2.4'

x-app: &app
  image: bridetown-minify-html:latest
  mem_limit: 512m
  build:
    context: .
    dockerfile: Dockerfile
    target: development
  volumes:
    - .:/usr/src/app:cached
    - bundler:/usr/local/bundle:delegated

services:
  web:
    <<: *app
    command: >
      bash -c "bundle check || bundle install &&
      rspec"
volumes:
  bundler:

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bridgetown-minify-html-0.2.0 docker-compose.yml
bridgetown-minify-html-0.1.0 docker-compose.yml