Files
Myrient-Search-Engine/docker-compose.dev.yml
Alexandra 3e6f6eeb36 * reimplement searchalikes
* separate kws based on categories
* auto include kws based on field options
* add roman numeral parse
* add number to name
* split out json search alikes to be per category
* add new kws columns to Files
* add search sample for determining if a game is in a series (maybe this could be useful somewhere else, too)
2025-05-18 07:11:37 -06:00

32 lines
680 B
YAML

# Run this for development
services:
elasticsearch:
image: elasticsearch:8.17.1
environment:
- discovery.type=single-node
- xpack.security.enabled=false
- "ES_JAVA_OPTS=-Xms1024m -Xmx1024m"
deploy:
resources:
limits:
memory: 2GB
ports:
- "9200:9200"
volumes:
- elasticsearch_data:/usr/share/elasticsearch/data
postgres:
image: postgres:16-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: development
POSTGRES_DB: myrient
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
elasticsearch_data:
postgres_data: