* Port redis to staging * redis cache on staging * add back legacy auth callback * Begin work on new auth flows * Finish all auth flows * Finish base session authentication * run prep + fix clippy * make compilation work
33 lines
686 B
YAML
33 lines
686 B
YAML
version: '3'
|
|
services:
|
|
postgres_db:
|
|
image: postgres:alpine
|
|
volumes:
|
|
- db-data:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_DB: postgres
|
|
POSTGRES_USER: labrinth
|
|
POSTGRES_PASSWORD: labrinth
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
meilisearch:
|
|
image: getmeili/meilisearch:v1.0.1
|
|
restart: on-failure
|
|
ports:
|
|
- "7700:7700"
|
|
volumes:
|
|
- meilisearch-data:/meili_data
|
|
environment:
|
|
MEILI_MASTER_KEY: modrinth
|
|
redis:
|
|
image: redis:alpine
|
|
restart: on-failure
|
|
ports:
|
|
- '6379:6379'
|
|
volumes:
|
|
- redis-data:/data
|
|
volumes:
|
|
meilisearch-data:
|
|
db-data:
|
|
redis-data: |