changing stuff

This commit is contained in:
Arnold Dechamps 2024-03-26 09:38:14 +01:00
parent 5e5d1015b6
commit aa04640fb0
No known key found for this signature in database
GPG key ID: AE66543374E41C89
4 changed files with 3 additions and 22 deletions

View file

@ -14,4 +14,4 @@ RUN pip install --upgrade pip && pip install -r requirements.txt
COPY . .
ENTRYPOINT ["./entrypoint.sh"]
CMD ["gunicorn", "tldtest.wsgi:application", "--bind", "0.0.0.0:8000"]
CMD ["gunicorn", "tldtest.wsgi:application", "--bind", "0.0.0.0:8000", "--timeout", "600"]

View file

@ -5,14 +5,6 @@ services:
build:
context: .
dockerfile: Dockerfile
command: gunicorn tldtest.wsgi:application --bind 0.0.0.0:8000
command: gunicorn tldtest.wsgi:application --bind 0.0.0.0:8000 --timeout 600
ports:
- 8000:8000
depends_on:
- db
db:
image: postgres:15
volumes:
- postgres_data:/var/lib/postgresql/data/
volumes:
postgres_data:

View file

@ -1,16 +1,5 @@
#!/bin/sh
if [ "$DATABASE" = "postgres" ]
then
echo "Waiting for postgres..."
while ! nc -z $SQL_HOST $SQL_PORT; do
sleep 0.1
done
echo "PostgreSQL started"
fi
python manage.py makemigrations # Make migrations
python manage.py migrate # Apply database migrations
python manage.py collectstatic

View file

@ -18,7 +18,7 @@
<tbody>
{% for TLD in object_list %}
<tr>
<td class="border border-slate-700">{{ TLD.unicodetld }}</td>
<td class="border border-slate-700">.{{ TLD.unicodetld }}</td>
<td class="border border-slate-700 text-l-blue-600">{{ TLD.nsamount }}</td>
<td class="border border-slate-700 text-red-700">{{ TLD.v4nsamount }}</td>
<td class="border border-slate-700 text-green-600">{{ TLD.v6nsamount }}</td>