mirror of
https://github.com/tiennm99/store-scraper-bot-java.git
synced 2026-05-15 13:55:44 +00:00
def45c7402
Replaces Couchbase with Redis for data persistence, updating environment variables, Docker Compose files, and repository logic. Removes Couchbase and Jackson dependencies, introduces Gson for JSON serialization, and refactors models and repositories to support Redis. Adds utility classes for Redis and Gson, and updates tests and scrapers to use Gson.
12 lines
210 B
YAML
12 lines
210 B
YAML
services:
|
|
redis:
|
|
image: redis:7.2-alpine
|
|
ports:
|
|
- "6379:6379"
|
|
volumes:
|
|
- redis_data:/data
|
|
restart: unless-stopped
|
|
command: redis-server --appendonly yes
|
|
|
|
volumes:
|
|
redis_data: |