b7685ad15f
* Fastapi base Dockerfile * requirements.txt for fastapi project * Add documentation on how to run the application * Add entrypoint for fastapi application * Add docker-compose.yml for fastapi Signed-off-by: vjanz <valon.januzaj98@gmail.com>
11 lines
154 B
YAML
11 lines
154 B
YAML
services:
|
|
api:
|
|
build: .
|
|
container_name: fastapi-application
|
|
environment:
|
|
PORT: 8000
|
|
ports:
|
|
- '8000:8000'
|
|
restart: "no"
|
|
|