latest
Browse files- Dockerfile β app/Dockerfile +0 -0
- __init__.py β app/__init__.py +0 -0
- app.py β app/app.py +0 -0
- config.py β app/config.py +0 -0
- crud.py β app/crud.py +0 -0
- database.py β app/database.py +0 -0
- main.py β app/main.py +0 -0
- models.py β app/models.py +0 -0
- requirements.txt β app/requirements.txt +0 -0
- schemas.py β app/schemas.py +0 -0
- docker-compose.yml +2 -3
Dockerfile β app/Dockerfile
RENAMED
File without changes
|
__init__.py β app/__init__.py
RENAMED
File without changes
|
app.py β app/app.py
RENAMED
File without changes
|
config.py β app/config.py
RENAMED
File without changes
|
crud.py β app/crud.py
RENAMED
File without changes
|
database.py β app/database.py
RENAMED
File without changes
|
main.py β app/main.py
RENAMED
File without changes
|
models.py β app/models.py
RENAMED
File without changes
|
requirements.txt β app/requirements.txt
RENAMED
File without changes
|
schemas.py β app/schemas.py
RENAMED
File without changes
|
docker-compose.yml
CHANGED
@@ -2,9 +2,8 @@ version: "3"
|
|
2 |
|
3 |
services:
|
4 |
backend:
|
5 |
-
build:
|
6 |
-
|
7 |
-
command: uvicorn main:app --host 0.0.0.0
|
8 |
networks:
|
9 |
- caw
|
10 |
ports:
|
|
|
2 |
|
3 |
services:
|
4 |
backend:
|
5 |
+
build: ./app/Dockerfile
|
6 |
+
command: uvicorn main:app --host 0.0.0.0
|
|
|
7 |
networks:
|
8 |
- caw
|
9 |
ports:
|