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

services:
  web:
    build: .
    command: sh -c "uvicorn main:app --reload --port=8000 --host=0.0.0.0"
    env_file:
     - .env
    ports:
     - "8000:8000"
    volumes:
     - .:/app