forked from kubeflow/hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
24 lines (23 loc) · 830 Bytes
/
docker-compose.yaml
File metadata and controls
24 lines (23 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Local development demo/example compose file
# Composes:
# - a mlmd-server connected to a SQLite file in test/config/ml-metadata/metadata.sqlite.db,
# - a model-registry server connected to the mlmd-server.
version: '3'
services:
mlmd-server:
image: gcr.io/tfx-oss-public/ml_metadata_store_server:1.14.0
container_name: mlmd-server
ports:
- "9090:8080"
environment:
- METADATA_STORE_SERVER_CONFIG_FILE=/tmp/shared/conn_config.pb
volumes:
- ./test/config/ml-metadata:/tmp/shared
model-registry:
image: ghcr.io/kubeflow/model-registry/server:latest
command: ["proxy", "--hostname", "0.0.0.0", "--mlmd-hostname", "mlmd-server", "--mlmd-port", "8080", "--datastore-type", "mlmd"]
container_name: model-registry
ports:
- "8080:8080"
depends_on:
- mlmd-server