Initial commit

This commit is contained in:
2026-05-12 15:40:22 -06:00
parent 5b279865a1
commit 1eac72b3cd
31 changed files with 1192 additions and 45 deletions
+15 -2
View File
@@ -1,6 +1,16 @@
version: '3.8'
services:
caddy:
build:
context: .
dockerfile: Dockerfile.caddy
ports:
- "80:80"
- "443:443"
volumes:
- caddy-data:/data
depends_on:
- server
server:
build: .
ports:
@@ -9,6 +19,8 @@ services:
- db
environment:
- MONGO_URI=mongodb://db:27017/logjensticks
- COOKIE_SECURE=true
db:
image: mongo:6.0
ports:
@@ -18,3 +30,4 @@ services:
volumes:
mongo-data:
caddy-data: