File size: 172 Bytes
edf2658
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
version: '3'

services:
  app:
    build: .
    ports:
      - "7860:7860"
    volumes:
      - ./:/app
      - .cache:/root/.cache
    command: python app.py
    tty: true