Sha256: 50727420f401c7cda35f6009928bbfb395674a4b681447472bdf438aa58499b9

Contents?: true

Size: 1.53 KB

Versions: 10

Compression:

Stored size: 1.53 KB

Contents

version: '2.0'
services:
  soar-authentication-token:
    command: /bin/bash -c 'sleep 5; bundle exec rspec -cfd spec'
    build: .
    image: soar-authentication-token
    volumes:
      - .:/usr/local/src/
    links:
      - authentication-token-generator-service
      - authentication-token-validator-service
  authentication-token-generator-service:
    build: authentication-token-generator-service
    image: authentication-token-generator-service
    command: soaring start -e production
    expose:
      - "9393"
    volumes:
      - ./authentication-token-generator-service:/usr/local/src/
    environment:
      - RACK_ENV=production
      - ENVIRONMENT_FILE=environment_local_ecosystem.yml
    links:
      - authentication-token-store
  authentication-token-validator-service:
    build: authentication-token-validator-service
    image: authentication-token-validator-service
    command: soaring start -e production
    expose:
      - "9393"
    volumes:
      - ./authentication-token-validator-service:/usr/local/src/
    environment:
      - RACK_ENV=development
      - ENVIRONMENT_FILE=environment_local_ecosystem.yml
    links:
      - authentication-token-store
  authentication-token-store:
    build: authentication-token-store
    image: authentication-token-store
    command: soaring start -e development
    expose:
      - "9393"
    environment:
      - RACK_ENV=development
      - ENVIRONMENT_FILE=environment_local_ecosystem.yml
    links:
      - authentication-token-redis-store
  authentication-token-redis-store:
    image: redis

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
soar_authentication_token-4.0.1 docker-compose.yml
soar_authentication_token-4.0.0 docker-compose.yml
soar_authentication_token-3.0.9 docker-compose.yml
soar_authentication_token-3.0.8 docker-compose.yml
soar_authentication_token-3.0.7 docker-compose.yml
soar_authentication_token-3.0.6 docker-compose.yml
soar_authentication_token-3.0.5 docker-compose.yml
soar_authentication_token-3.0.4 docker-compose.yml
soar_authentication_token-3.0.3 docker-compose.yml
soar_authentication_token-3.0.2 docker-compose.yml