Add dev compose file
This commit is contained in:
parent
850648dfe3
commit
8e708c9596
|
@ -0,0 +1,14 @@
|
|||
version: '3.7'
|
||||
|
||||
services:
|
||||
app:
|
||||
build: .
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- 8000:8000
|
||||
tty: true
|
||||
stdin_open: true
|
||||
volumes:
|
||||
- ./app:/app/app
|
||||
command: uvicorn app.main:app --host 0.0.0.0 --reload
|
Loading…
Reference in New Issue