[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/feast-dev/feast-benchmarks/main/java/docker-compose.yml [Back]  [Original]

version: "3.9" 
services:
  feature-server:
    image: gcr.io/kf-feast/feature-server-java:develop
    ports:
      - "6566:6566"
    volumes:
      - ./config:/etc/feast
      - ./feature_repos/redis/data:/data
    command:
      - java
      - -jar
      - /opt/feast/feast-serving.jar
      - "classpath:/application.yml,file:/etc/feast/application-overrides.yaml"
    links:
      - redis
  redis:
    image: redis
    ports:
      - "16379:6379"

Web Proxy Viewer  |  New URL  |  Original Page