Add new ServerHandler package which handles requests

This commit is contained in:
Jesse Wierzbinski 2024-04-13 21:51:00 -10:00
parent 3cdd685035
commit 327a716b12
No known key found for this signature in database
10 changed files with 616 additions and 110 deletions

View file

@ -1,15 +1,16 @@
---
services:
lysand:
image: ghcr.io/lysand-org/lysand:main
build: . # Automatic builds are currently broken, please build from source
# image: ghcr.io/lysand-org/lysand:latest
volumes:
- ./logs:/app/logs
- ./config:/app/config
- ./uploads:/app/uploads
- ./logs:/app/dist/logs
- ./config:/app/dist/config
- ./uploads:/app/dist/uploads
restart: unless-stopped
container_name: lysand
networks:
- lysand-net
db:
image: ghcr.io/lysand-org/postgres:main
container_name: lysand-db
@ -17,32 +18,33 @@ services:
environment:
POSTGRES_DB: lysand
POSTGRES_USER: lysand
POSTGRES_PASSWORD: lysand
POSTGRES_PASSWORD: _______________
networks:
- lysand-net
volumes:
- ./db-data:/var/lib/postgresql/data
redis:
image: redis:latest
image: redis:alpine
container_name: lysand-redis
volumes:
- ./redis-data:/data
restart: unless-stopped
networks:
- lysand-net
meilisearch:
stdin_open: true
environment:
- MEILI_MASTER_KEY=add_your_key_here
- MEILI_MASTER_KEY=__________________
tty: true
networks:
- lysand-net
volumes:
- ./meili-data:/meili_data
image: getmeili/meilisearch:v1.5
image: getmeili/meilisearch:v1.7
container_name: lysand-meilisearch
restart: unless-stopped
networks:
lysand-net:
internal: true
lysand-net: