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 WORKDIR /app
@ -7,6 +7,5 @@ RUN apt update
COPY requirements.txt ./ COPY requirements.txt ./
RUN pip install --no-cache-dir -r 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 ├── docker-compose.yaml
├── Dockerfile ├── Dockerfile
├── requirements.txt ├── requirements.txt
├── src ├── app
   ├── app.py    ├── main.py
   ├── __init__.py    ├── __init__.py
``` ```
@ -18,12 +18,14 @@ Project structure:
version: '3.7' version: '3.7'
services: services:
api: api:
build: build: .
context: . container_name: fastapi-application
dockerfile: Dockerfile environment:
container_name: fastapi-service PORT: 8000
ports: ports:
- '8000:8000' - '8000:8000'
restart: "no"
``` ```
## Deploy with docker-compose ## Deploy with docker-compose
@ -36,8 +38,8 @@ docker-compose up -d --build
Listing containers must show one container running and the port mapping as below: Listing containers must show one container running and the port mapping as below:
``` ```
$ docker ps $ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 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: 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 from fastapi import FastAPI
import uvicorn
app = FastAPI(debug=True) app = FastAPI()
@app.get("/") @app.get("/")
def hello_world(): def hello_world():
return {"message": "OK"} return {"message": "OK"}

View File

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