Sha256: 052f14a0eeafea4f61229c2644acc52d84e86badace6d61f94e0c2b601ffbe47

Contents?: true

Size: 724 Bytes

Versions: 4

Compression:

Stored size: 724 Bytes

Contents

version: '3.1'

services:

  app:
    build:
      context: .
      dockerfile: .circleci/containers/app/Dockerfile

    depends_on:
      - database
    ports:
      - "35729:35729"
      - "3000:3000"
    volumes:
      - .:/usr/src/app
      - gem_cache:/gems
    env_file:
      - .circleci/containers/database/development.env
      - .circleci/containers/app/development.env
    command: [ "bin/rails", "s" ]

    stdin_open: true
    tty: true
    secrets:
      - host_ssh_key

  database:
    image: postgres
    env_file:
      - .circleci/containers/database/development.env

    volumes:
      - db-data:/var/lib/postgresql/data

volumes:
  db-data:
  gem_cache:

secrets:
  host_ssh_key:
    file: ~/.ssh/id_rsa

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
handsome_fencer-circle_c_i-0.1.25 lib/handsome_fencer/circle_c_i/templates/docker-compose.yml
handsome_fencer-circle_c_i-0.1.24 lib/handsome_fencer/circle_c_i/templates/docker-compose.yml
handsome_fencer-circle_c_i-0.1.23 lib/handsome_fencer/circle_c_i/templates/docker-compose.yml
handsome_fencer-circle_c_i-0.1.22 lib/handsome_fencer/circle_c_i/templates/docker-compose.yml