image-caption / docker-compose.yml
AnkitS1997's picture
first commit
ce47c87
raw
history blame
317 Bytes
version: '3.8'
services:
fastapi:
build:
context: .
dockerfile: Dockerfile.fastapi
ports:
- "8000:8000"
restart: always
streamlit:
build:
context: .
dockerfile: Dockerfile.streamlit
ports:
- "8501:8501"
restart: always
depends_on:
- fastapi