Столкнулся с ошибкой при создании приложения Django/PostgreSQL с помощью docker-compose

Пытаясь создать приложение Django/PostgreSQL как указано в здесь

Я получаю следующую ошибку :

db_1   |
db_1   | PostgreSQL Database directory appears to contain a database; Skipping initialization
db_1   |
db_1   | 2021-12-19 14:50:52.192 UTC [1] LOG:  starting PostgreSQL 14.1 (Debian 14.1-1.pgdg110+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 10.2.1-6) 10.2.1 20210110, 64-bit
db_1   | 2021-12-19 14:50:52.193 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
db_1   | 2021-12-19 14:50:52.193 UTC [1] LOG:  listening on IPv6 address "::", port 5432
db_1   | 2021-12-19 14:50:52.199 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
db_1   | 2021-12-19 14:50:52.231 UTC [26] LOG:  database system was interrupted; last known up at 2021-12-19 14:49:29 UTC
web_1  | Watching for file changes with StatReloader
web_1  | Performing system checks...
web_1  |
web_1  | System check identified no issues (0 silenced).
db_1   | 2021-12-19 14:50:53.782 UTC [27] FATAL:  the database system is starting up
web_1  | Exception in thread django-main-thread:
web_1  | Traceback (most recent call last):
web_1  | psycopg2.OperationalError: FATAL:  the database system is starting up
web_1  |
web_1  |
web_1  | The above exception was the direct cause of the following exception:
web_1  |
web_1  | Traceback (most recent call last):
web_1  |   File "/usr/local/lib/python3.10/threading.py", line 1009, in _bootstrap_inner
web_1  |     self.run()
web_1  |   File "/usr/local/lib/python3.10/threading.py", line 946, in run
web_1  |     self._target(*self._args, **self._kwargs)

.
.
.
.

web_1  |     return func(*args, **kwargs)
web_1  |   File "/usr/local/lib/python3.10/site-packages/django/db/backends/base/base.py", line 229, in ensure_connection
web_1  |     with self.wrap_database_errors:
web_1  |   File "/usr/local/lib/python3.10/site-packages/django/db/utils.py", line 90, in __exit__


web_1  |     return func(*args, **kwargs)
web_1  |   File "/usr/local/lib/python3.10/site-packages/django/db/backends/postgresql/base.py", line 199, in get_new_connection
web_1  |     connection = Database.connect(**conn_params)
web_1  |   File "/usr/local/lib/python3.10/site-packages/psycopg2/__init__.py", line 122, in connect
web_1  |     conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
web_1  | django.db.utils.OperationalError: FATAL:  the database system is starting up
web_1  |
db_1   | 2021-12-19 14:50:54.190 UTC [26] LOG:  database system was not properly shut down; automatic recovery in progress
db_1   | 2021-12-19 14:50:54.213 UTC [26] LOG:  redo starts at 0/16FAB80
db_1   | 2021-12-19 14:50:54.214 UTC [26] LOG:  invalid record length at 0/16FAC68: wanted 24, got 0
db_1   | 2021-12-19 14:50:54.214 UTC [26] LOG:  redo done at 0/16FAC30 system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
db_1   | 2021-12-19 14:50:54.280 UTC [1] LOG:  database system is ready to accept connections

Я запускаю Docker Desktop на Windows.

Любая помощь, касающаяся понимания ошибки, будет очень признательна?

Вернуться на верх