├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── pythonapp.yml ├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── assets ├── css │ └── main.css ├── img │ ├── favicon │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ ├── ogimage.png │ ├── raven.jpg │ ├── raven.png │ └── woman_with_picture.svg └── js │ └── main.js ├── docker-compose.yml ├── docs └── images │ ├── input │ ├── bird.jpg │ ├── building.jpg │ ├── cat.jpg │ └── kangaroo.jpg │ ├── object-cut.png │ ├── output │ ├── bird.png │ ├── building.png │ ├── cat.png │ └── kangaroo.png │ └── pipeline.png ├── index.html ├── inference ├── Dockerfile ├── data │ └── .gitkeep ├── gdrive_download.sh ├── requirements.lock ├── requirements.txt └── src │ ├── __init__.py │ ├── bas_net │ ├── __init__.py │ └── model.py │ ├── main.py │ ├── models.py │ ├── u2_net │ ├── __init__.py │ └── model.py │ └── utils │ ├── __init__.py │ ├── data_loader.py │ ├── env.py │ ├── log.py │ ├── model_enum.py │ └── run.py ├── multiplexer ├── Dockerfile ├── keys │ └── storage_key.tar.gpg ├── requirements.lock ├── requirements.txt ├── scripts │ ├── __init__.py │ └── bulk.py ├── src │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ └── remove.py │ ├── main.py │ ├── openapi │ │ └── openapi.yaml │ └── utils │ │ ├── __init__.py │ │ ├── env.py │ │ ├── image.py │ │ ├── log.py │ │ ├── response_maker.py │ │ ├── storage.py │ │ └── timer.py ├── test │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ └── test_remove.py │ ├── base.py │ └── data │ │ ├── animal-big.jpg │ │ └── person.jpg └── uwsgi.ini └── traefik ├── acme.json └── traefik.yml /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | objectcut.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/img/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /assets/img/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /assets/img/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /assets/img/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /assets/img/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /assets/img/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /assets/img/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/apple-icon.png -------------------------------------------------------------------------------- /assets/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/browserconfig.xml -------------------------------------------------------------------------------- /assets/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /assets/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /assets/img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /assets/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/favicon.ico -------------------------------------------------------------------------------- /assets/img/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/manifest.json -------------------------------------------------------------------------------- /assets/img/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /assets/img/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /assets/img/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /assets/img/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /assets/img/ogimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/ogimage.png -------------------------------------------------------------------------------- /assets/img/raven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/raven.jpg -------------------------------------------------------------------------------- /assets/img/raven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/raven.png -------------------------------------------------------------------------------- /assets/img/woman_with_picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/img/woman_with_picture.svg -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/images/input/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/input/bird.jpg -------------------------------------------------------------------------------- /docs/images/input/building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/input/building.jpg -------------------------------------------------------------------------------- /docs/images/input/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/input/cat.jpg -------------------------------------------------------------------------------- /docs/images/input/kangaroo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/input/kangaroo.jpg -------------------------------------------------------------------------------- /docs/images/object-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/object-cut.png -------------------------------------------------------------------------------- /docs/images/output/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/output/bird.png -------------------------------------------------------------------------------- /docs/images/output/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/output/building.png -------------------------------------------------------------------------------- /docs/images/output/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/output/cat.png -------------------------------------------------------------------------------- /docs/images/output/kangaroo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/output/kangaroo.png -------------------------------------------------------------------------------- /docs/images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/docs/images/pipeline.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/index.html -------------------------------------------------------------------------------- /inference/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/Dockerfile -------------------------------------------------------------------------------- /inference/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inference/gdrive_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/gdrive_download.sh -------------------------------------------------------------------------------- /inference/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/requirements.lock -------------------------------------------------------------------------------- /inference/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/requirements.txt -------------------------------------------------------------------------------- /inference/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/__init__.py -------------------------------------------------------------------------------- /inference/src/bas_net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inference/src/bas_net/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/bas_net/model.py -------------------------------------------------------------------------------- /inference/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/main.py -------------------------------------------------------------------------------- /inference/src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/models.py -------------------------------------------------------------------------------- /inference/src/u2_net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inference/src/u2_net/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/u2_net/model.py -------------------------------------------------------------------------------- /inference/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inference/src/utils/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/utils/data_loader.py -------------------------------------------------------------------------------- /inference/src/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/utils/env.py -------------------------------------------------------------------------------- /inference/src/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/utils/log.py -------------------------------------------------------------------------------- /inference/src/utils/model_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/utils/model_enum.py -------------------------------------------------------------------------------- /inference/src/utils/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/inference/src/utils/run.py -------------------------------------------------------------------------------- /multiplexer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/Dockerfile -------------------------------------------------------------------------------- /multiplexer/keys/storage_key.tar.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/keys/storage_key.tar.gpg -------------------------------------------------------------------------------- /multiplexer/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/requirements.lock -------------------------------------------------------------------------------- /multiplexer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/requirements.txt -------------------------------------------------------------------------------- /multiplexer/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multiplexer/scripts/bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/scripts/bulk.py -------------------------------------------------------------------------------- /multiplexer/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/__init__.py -------------------------------------------------------------------------------- /multiplexer/src/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multiplexer/src/api/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/api/remove.py -------------------------------------------------------------------------------- /multiplexer/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/main.py -------------------------------------------------------------------------------- /multiplexer/src/openapi/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/openapi/openapi.yaml -------------------------------------------------------------------------------- /multiplexer/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multiplexer/src/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/utils/env.py -------------------------------------------------------------------------------- /multiplexer/src/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/utils/image.py -------------------------------------------------------------------------------- /multiplexer/src/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/utils/log.py -------------------------------------------------------------------------------- /multiplexer/src/utils/response_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/utils/response_maker.py -------------------------------------------------------------------------------- /multiplexer/src/utils/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/utils/storage.py -------------------------------------------------------------------------------- /multiplexer/src/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/src/utils/timer.py -------------------------------------------------------------------------------- /multiplexer/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multiplexer/test/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multiplexer/test/api/test_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/test/api/test_remove.py -------------------------------------------------------------------------------- /multiplexer/test/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/test/base.py -------------------------------------------------------------------------------- /multiplexer/test/data/animal-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/test/data/animal-big.jpg -------------------------------------------------------------------------------- /multiplexer/test/data/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/test/data/person.jpg -------------------------------------------------------------------------------- /multiplexer/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/multiplexer/uwsgi.ini -------------------------------------------------------------------------------- /traefik/acme.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /traefik/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertSuarez/object-cut/HEAD/traefik/traefik.yml --------------------------------------------------------------------------------