File size: 213 Bytes
f3270e6
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
services:
  web:
    container_name: api_web
    build:
      context: .
      dockerfile: Dockerfile
    command: uvicorn app.main:app --reload --workers 1 --host 0.0.0.0 --port 8080
    ports:
      - 8080:8080