Build docker image closes #28

This commit is contained in:
2026-03-29 13:53:33 +02:00
parent 081eba0fad
commit 8dc1f27b17
10 changed files with 201 additions and 111 deletions
+9
View File
@@ -0,0 +1,9 @@
services:
app:
image: gitea.furb.it/kennyboy55/friend-event-rsvp:dev
container_name: friend-event-rsvp
ports:
- "8000:8000"
env_file: .env
volumes:
- ./data:/data
+15
View File
@@ -0,0 +1,15 @@
# ---------------------------------------------------------------------------
# This template contains only required options.
# ---------------------------------------------------------------------------
# random secret key, use for example `base64 /dev/urandom | head -c50` to generate one
SECRET_KEY=
# your default timezone See https://timezonedb.com/time-zones for a list of timezones
TZ=Europe/Amsterdam
# allowed hosts (see documentation), must be set to your hostname(s)
ALLOWED_HOSTS=events.mydomain.com
# enable debug log
#DEBUG=1