You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
version: '3.7'
|
|
|
|
services:
|
|
api:
|
|
build: ./services/api
|
|
command: uvicorn app.main:app --reload --workers 1 --host 0.0.0.0 --port 8000
|
|
volumes:
|
|
- ./services/api/:/opt/fast_api/
|
|
ports:
|
|
- 8002:8000
|