- Updated README and documentation to reflect the transition from MinIO to Garage for S3-compatible storage. - Removed the MinIO-specific docker-compose files and replaced them with Garage configurations. - Adjusted environment variables and service dependencies in docker-compose files to accommodate Garage. - Modified application code to log hints for Garage instead of MinIO. - Ensured all references to MinIO in the codebase and documentation are replaced with Garage.
75 lines
2.2 KiB
YAML
75 lines
2.2 KiB
YAML
services:
|
|
db:
|
|
image: postgres:17-alpine
|
|
environment:
|
|
POSTGRES_USER: ${POSTGRES_USER:-postgres}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
|
|
POSTGRES_DB: ${POSTGRES_DB:-postgres}
|
|
volumes:
|
|
- beenvoice_dev_pg_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test:
|
|
["CMD-SHELL", 'pg_isready -U "$${POSTGRES_USER}" -d "$${POSTGRES_DB}"']
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 10
|
|
ports:
|
|
- "${POSTGRES_PORT:-5432}:5432"
|
|
restart: unless-stopped
|
|
|
|
# S3-compatible receipt storage for host dev (`bun dev`). API :3900.
|
|
garage:
|
|
image: dxflrs/garage:v2.3.0
|
|
environment:
|
|
GARAGE_DEFAULT_ACCESS_KEY: ${S3_ACCESS_KEY:-GK3515373e4c851ebaad366558}
|
|
GARAGE_DEFAULT_SECRET_KEY: ${S3_SECRET_KEY:-7d37d093435a41f2aab8f13c19ba067d9776c90215f56614adad6ece597dbb34}
|
|
GARAGE_DEFAULT_BUCKET: ${S3_BUCKET:-beenvoice-receipts}
|
|
configs:
|
|
- source: garage_config
|
|
target: /etc/garage.toml
|
|
volumes:
|
|
- beenvoice_dev_garage_meta:/var/lib/garage/meta
|
|
- beenvoice_dev_garage_data:/var/lib/garage/data
|
|
command: ["/garage", "server", "--single-node", "--default-bucket"]
|
|
ports:
|
|
- "${GARAGE_API_PORT:-3900}:3900"
|
|
healthcheck:
|
|
test: ["CMD", "/garage", "status"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 15
|
|
start_period: 20s
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
beenvoice_dev_pg_data:
|
|
beenvoice_dev_garage_meta:
|
|
beenvoice_dev_garage_data:
|
|
|
|
configs:
|
|
garage_config:
|
|
content: |
|
|
metadata_dir = "/var/lib/garage/meta"
|
|
data_dir = "/var/lib/garage/data"
|
|
db_engine = "sqlite"
|
|
replication_factor = 1
|
|
|
|
rpc_bind_addr = "[::]:3901"
|
|
rpc_public_addr = "garage:3901"
|
|
rpc_secret = "000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f"
|
|
|
|
[s3_api]
|
|
s3_region = "garage"
|
|
api_bind_addr = "[::]:3900"
|
|
root_domain = ".s3.garage"
|
|
|
|
[s3_web]
|
|
bind_addr = "[::]:3902"
|
|
root_domain = ".web.garage"
|
|
index = "index.html"
|
|
|
|
[admin]
|
|
api_bind_addr = "[::]:3903"
|
|
admin_token = "beenvoice_garage_admin_token_change_me_in_production"
|
|
metrics_token = "beenvoice_garage_metrics_token_change_me_in_production"
|