mirror of
https://github.com/versia-pub/server.git
synced 2026-04-27 20:59:15 +02:00
Add new ServerHandler package which handles requests
This commit is contained in:
parent
3cdd685035
commit
327a716b12
10 changed files with 616 additions and 110 deletions
|
|
@ -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:
|
||||
Loading…
Add table
Add a link
Reference in a new issue