Sha256: 8913caa797c1ab6e7425f2e167c7a7d269f60375700bdde081699144353b8935

Contents?: true

Size: 986 Bytes

Versions: 3

Compression:

Stored size: 986 Bytes

Contents

version: '2.1'

volumes:
  foresight-gems:
    driver: local

services:

  lib:
    build:
      context: .
      dockerfile: dev.Dockerfile
    image: icalialabs/foresight-gem:development

    volumes:
      # Mount our app code directory (".") into our app containers at the `/usr/src/lib` folder:
      - .:/usr/src/lib
      # Mount the 'archon-gems' volume on the folder that stores bundled gems:
      - foresight-gems:/usr/local/bundle

    # Keep the stdin open, so we can attach to our app container's process
    # and do things such as byebug, etc:
    stdin_open: true

    # Enable sending signals (CTRL+C, CTRL+P + CTRL+Q) into the container:
    tty: true

    # The command:
    command: guard

    extra_hosts:
      - "artanis-dev.icalialabs.com:13.85.80.155"

    environment:
      ARTANIS_URL: ${ARTANIS_URL:-http://artanis.icalialabs.com}
      ARTANIS_CLIENT_KEY: ${ARTANIS_CLIENT_KEY:-SOME_KEY}
      ARTANIS_CLIENT_SECRET: ${ARTANIS_CLIENT_SECRET:-SOME_SECRET}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
icalia-foresight-0.0.3 docker-compose.yml
icalia-foresight-0.0.2 docker-compose.yml
icalia-foresight-0.0.1 docker-compose.yml