Change the docker image to tiangolo/uvicorn-gunicorn-fastapi

Signed-off-by: Valon Januzaj <valon.januzaj98@gmail.com>
Signed-off-by: vjanz <valon.januzaj98@gmail.com>
This commit is contained in:
Valon Januzaj 2021-07-22 11:39:40 +02:00 committed by vjanz
parent 33960f9678
commit 6d6dff8393
5 changed files with 19 additions and 19 deletions

View File

@ -1,4 +1,4 @@
FROM python:3.8
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8
WORKDIR /app
@ -7,6 +7,5 @@ RUN apt update
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
COPY ./app ./app
CMD ["uvicorn", "--host", "0.0.0.0", "--port", "8000", "src.app:app"]

View File

@ -7,8 +7,8 @@ Project structure:
├── docker-compose.yaml
├── Dockerfile
├── requirements.txt
├── src
   ├── app.py
├── app
   ├── main.py
   ├── __init__.py
```
@ -18,12 +18,14 @@ Project structure:
version: '3.7'
services:
api:
build:
context: .
dockerfile: Dockerfile
container_name: fastapi-service
build: .
container_name: fastapi-application
environment:
PORT: 8000
ports:
- '8000:8000'
restart: "no"
```
## Deploy with docker-compose
@ -37,7 +39,7 @@ Listing containers must show one container running and the port mapping as below
```
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
69893120c355 fastapi_api "uvicorn --host 0.0.…" About a minute ago Up About a minute 0.0.0.0:8000->8000/tcp fastapi-service
7087a6e79610 5c1778a60cf8 "/start.sh" About a minute ago Up About a minute 80/tcp, 0.0.0.0:8000->8000/tcp, :::8000->8000/tcp fastapi-application
```
After the application starts, navigate to `http://localhost:8000` in your web browser and you should see the following json response:

View File

@ -1,11 +1,8 @@
from fastapi import FastAPI
import uvicorn
app = FastAPI(debug=True)
app = FastAPI()
@app.get("/")
def hello_world():
return {"message": "OK"}

View File

@ -1,9 +1,11 @@
version: '3.7'
services:
api:
build:
context: .
dockerfile: Dockerfile
container_name: fastapi-service
build: .
container_name: fastapi-application
environment:
PORT: 8000
ports:
- '8000:8000'
restart: "no"