Compare commits

...

3 Commits

Author SHA1 Message Date
Lukáš Kucharczyk d029fda896 Collect static files in entrypoint.sh
continuous-integration/drone/push Build is passing Details
2023-01-07 18:10:36 +01:00
Lukáš Kucharczyk 9dead362c1 Set STATIC_ROOT 2023-01-07 18:09:22 +01:00
Lukáš Kucharczyk d81dba727b Add docker-compose.yml 2023-01-07 18:09:10 +01:00
4 changed files with 21 additions and 1 deletions

View File

@ -6,7 +6,7 @@ RUN npm install && \
FROM python:3.10-slim-bullseye
ENV VERSION_NUMBER 0.1.0-48-gdb5de81
ENV VERSION_NUMBER 0.1.0-51-g9dead36
ENV PROD 1
RUN useradd --create-home --uid 1000 timetracker

16
docker-compose.yml Normal file
View File

@ -0,0 +1,16 @@
---
version: "2.1"
services:
timetracker:
image: registry.kucharczyk.xyz/timetracker
build: Dockerfile
container_name: timetracker
environment:
- TZ=Europe/Prague
- CSRF_TRUSTED_ORIGINS="https://tracker.kucharczyk.xyz"
user: "1000"
# volumes:
# - "db:/home/timetracker/app/src/web/db.sqlite3"
ports:
- "8000:8000"
restart: unless-stopped

View File

@ -3,6 +3,9 @@
echo "Apply database migrations"
poetry run python src/web/manage.py migrate
echo "Collect static files"
poetry run python src/web/manage.py collectstatic
# Start server
echo "Starting server"
poetry run python src/web/manage.py runserver 0.0.0.0:8000

View File

@ -123,6 +123,7 @@ USE_TZ = True
# https://docs.djangoproject.com/en/4.1/howto/static-files/
STATIC_URL = "static/"
STATIC_ROOT = BASE_DIR / "/static"
# Default primary key field type
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field