Sha256: a62b39d887ae1fe84464251bf0cc69bd6fe30369d699b060cb12d5ee9e2f30cb

Contents?: true

Size: 1.68 KB

Versions: 2

Compression:

Stored size: 1.68 KB

Contents

version: '2.0'
services:
  soar-authentication-token:
    command: /bin/bash -c 'sleep 30; bundle exec rspec -cfd ./spec/'
    user: $UID:$UID
    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
    user: $UID:$UID
    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
    user: $UID:$UID
    expose:
      - "9393"
    volumes:
      - ./authentication-token-validator-service:/usr/local/src/
    environment:
      - RACK_ENV=production
      - 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 production
    user: $UID:$UID
    expose:
      - "9393"
    volumes:
      - ./authentication-token-store:/usr/local/src/
    environment:
      - RACK_ENV=production
      - ENVIRONMENT_FILE=environment_local_ecosystem.yml
    links:
      - authentication-token-redis-store
  authentication-token-redis-store:
    image: redis

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
soar_authentication_token-6.1.1 docker-compose.yml
soar_authentication_token-6.1.0 docker-compose.yml