BTHLABS-49: WIP

This commit is contained in:
2025-08-19 15:02:38 +02:00
parent 53fdc8e12e
commit 5ae8645231
11 changed files with 223 additions and 8 deletions

2
deployment/aio/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
run/*.sqlite
uploads/

View File

@@ -0,0 +1,12 @@
services:
backend:
image: "docker-hosted.nexus.bthlabs.pl/hotpocket/backend:aio-v1.0.0rc1-01"
environment:
HOTPOCKET_BACKEND_SECRET_KEY: "thisisntright"
HOTPOCKET_BACKEND_INITIAL_ACCOUNT_USERNAME: "hotpocket"
HOTPOCKET_BACKEND_INITIAL_ACCOUNT_PASSWORD: "hotpocketm4st3r"
ports:
- "8000:8000"
volumes:
- "./run:/srv/run"
restart: "unless-stopped"

View File