CoolFace
Apppublic

smdbs/CS553_CaseStudy1

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
docker-compose.yml41 linesDownload Raw Back to root
1version: '3.8'2 3services:4  group_9_app:5    image: smdbs/cs553:cs36    environment:7      - GRADIO_SERVER_NAME=0.0.0.08    env_file: .env9    ports:10      - "12345:7860" 11      - "12346:8000"12      - "12347:9100"  13    networks:14      - monitoring15 16  group_9_prom:17    image: prom/prometheus:latest18    volumes:19      - ./prometheus.yml:/etc/prometheus/prometheus.yml20    command:21      - --config.file=/etc/prometheus/prometheus.yml22    ports:23      - "12348:9090" 24    networks:25      - monitoring26 27  group_9_grafana:28    image: grafana/grafana-enterprise29    ports:30      - "12349:3000" 31    networks:32      - monitoring33    environment:34      - GF_SECURITY_ADMIN_PASSWORD=admin  # Change in production35 36networks:37  monitoring:38    name: monitoring39    external: true40    41