Testing new implementation in command section in docker-compose file

This commit is contained in:
Fanilo-Nantenaina 2025-12-30 18:36:30 +03:00
parent 792d771667
commit 8951f73c53

View file

@ -9,4 +9,4 @@ services:
ports:
- "8000:8000"
restart: unless-stopped
command: uvicorn api:app --host 0.0.0.0 --port 8000
command: python init_db.py && uvicorn api:app --host 0.0.0.0 --port 8000