diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b98085..cb258a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 1.11.0 : 2024-02-10 +## 1.11.0 : 2024-02-11 Bunch of funky updates into an upcoming summer course! Some attempts were made to make the task result better readable. Improved scalability moving `worker` outside of the server image and `supervisord` service. diff --git a/README.md b/README.md index 2405975..ab44256 100644 --- a/README.md +++ b/README.md @@ -43,9 +43,6 @@ Example of configuration is present in `compose.yml`. The containers require access to the Docker environment that's why you have to create volume, which maps a path to the Docker socket. -Docker network have to be created and provided to the application using `DBS_DOCKER_NETWORK` environment variable. -Network `dbs` is used in the example - Repository contains an example of the **systemd unit script** in the `conf/tester-dbs.service`. ### From source @@ -68,4 +65,4 @@ For more information check the `docs` directory. --- ![](docs/fiit.png) -Made with ❤️ and ☕️ FIIT STU (c) 2022-2023 +Made with ❤️ and ☕️ FIIT STU (c) 2022-2024 diff --git a/apps/core/management/commands/prune.py b/apps/core/management/commands/prune.py index 3ecb647..f553f95 100644 --- a/apps/core/management/commands/prune.py +++ b/apps/core/management/commands/prune.py @@ -4,7 +4,7 @@ class Command(BaseCommand): - help = "Prune unused docker containers/imagees" + help = "Prune unused docker containers/images" def handle(self, *args, **options): started_at = timezone.now()