mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
b4d9825409
Ported gradio website into gradio repository, now launched as a docker service from gradio/website
19 lines
379 B
YAML
19 lines
379 B
YAML
version: "3.7"
|
|
services:
|
|
homepage:
|
|
build:
|
|
context: ../
|
|
dockerfile: ./website/homepage/Dockerfile
|
|
args:
|
|
COLAB_NOTEBOOK_LINKS: $COLAB_NOTEBOOK_LINKS
|
|
container_name: homepage
|
|
ports:
|
|
- "8080:80"
|
|
demos:
|
|
build:
|
|
context: ../
|
|
dockerfile: ./website/demos/Dockerfile
|
|
container_name: demos
|
|
ports:
|
|
- "8070:80"
|