FuzzySearch/docker-compose.yml

19 lines
363 B
YAML
Raw Normal View History

2024-08-17 15:59:49 +02:00
services:
data_generator:
image: git.anthrove.art/anthrove/demo-data-generator:v1.0.1
env_file:
- .env
restart: no
depends_on:
- db
2024-08-17 15:59:49 +02:00
db:
image: postgres
2024-12-21 16:56:44 +01:00
container_name: fuzzy_search_db
2024-08-17 15:59:49 +02:00
ports:
- 5432:5432
environment:
POSTGRES_USER: anthrove
POSTGRES_DB: anthrove
POSTGRES_PASSWORD: anthrove