CoolFace
Apppublic

cflo58/floresChatbot

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
docker-compose.yml19 linesDownload Raw Back to root
1version: '3'2 3services:4  app:5    container_name: app6    restart: always7    build: ./app8    ports:9      - "8501:8501"10    command: streamlit run app.py11 12  nginx:13    container_name: nginx14    restart: always15    build: ./nginx16    ports:17      - "80:80"18    depends_on:19      - app