mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
d45d98e300
* Add application * Dockerize the app * Fix 204 content-leength error * Rename database file * Add tests * Add README * Fix a typo in FastAPI example * Add docs on FastAPI + SQLAlchemy example * Update changelog * Add link to the example to README and other docs pages * Add EOF to the config.yml
12 lines
132 B
YAML
12 lines
132 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
|
|
webapp:
|
|
build: ./
|
|
image: webapp
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- "./:/code"
|