├── Dockerfile ├── LICENSE ├── README.md ├── channels.json ├── docker-compose.yaml ├── main.py └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2022-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2022-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2022-docker/HEAD/README.md -------------------------------------------------------------------------------- /channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2022-docker/HEAD/channels.json -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2022-docker/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArjanCodes/2022-docker/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | pydantic 3 | uvicorn 4 | watchfiles --------------------------------------------------------------------------------