Spaces:
1v1
/
Running

File size: 281 Bytes
dfee0ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: '3.8'

services:
  stock-analyzer:
    build: .
    ports:
      - "8888:8888"
    environment:
      - API_KEY=${API_KEY}
      - API_URL=${API_URL}
      - API_MODEL=${API_MODEL}
      - API_TIMEOUT=${API_TIMEOUT}
    volumes:
      - .:/app
    restart: unless-stopped