beta #14

Merged
didirus merged 66 commits from beta into release 2025-08-16 21:13:39 +00:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit 58645b9ba9 - Show all commits

View File

@@ -11,8 +11,9 @@ trim_trailing_whitespace = true
max_line_length = 100
[*.md]
indent_size = 2
max_line_length = off
trim_trailing_whitespace = false
[*.json]
[*.{json,yml,yaml,ts,vue,scss,css,html,js,cjs,mjs,gltf,prettierrc}]
indent_size = 2

View File

@@ -1,6 +1,8 @@
name: labrinth
services:
postgres_db:
image: postgres:alpine
container_name: labrinth-postgres
volumes:
- db-data:/var/lib/postgresql/data
ports:
@@ -16,6 +18,7 @@ services:
retries: 3
meilisearch:
image: getmeili/meilisearch:v1.12.0
container_name: labrinth-meilisearch
restart: on-failure
ports:
- '7700:7700'
@@ -31,6 +34,7 @@ services:
retries: 3
redis:
image: redis:alpine
container_name: labrinth-redis
restart: on-failure
ports:
- '6379:6379'
@@ -43,13 +47,14 @@ services:
retries: 3
clickhouse:
image: clickhouse/clickhouse-server
container_name: labrinth-clickhouse
ports:
- '8123:8123'
environment:
CLICKHOUSE_USER: default
CLICKHOUSE_PASSWORD: default
healthcheck:
test: ['CMD', 'clickhouse-client', '--query', 'SELECT 1']
test: ['CMD-SHELL', 'clickhouse-client --query "SELECT 1"']
interval: 3s
timeout: 5s
retries: 3