21 lines
372 B
YAML
21 lines
372 B
YAML
services:
|
|
mastobot:
|
|
build:
|
|
context: .
|
|
args:
|
|
- version=local
|
|
container_name: mastobot
|
|
env_file: ./.env
|
|
environment:
|
|
- UVICORN_RELOAD=True
|
|
ports:
|
|
- 8000:8000
|
|
develop:
|
|
watch:
|
|
- action: sync
|
|
path: ./app
|
|
target: /code/app
|
|
- action: rebuild
|
|
path: ./requirements.txt
|
|
|