Files
templates/blueprints/garage-with-ui/docker-compose.yml
Vincent Niehues 785462b94a Add Garage S3 blueprint and update Garage S3 with UI (#367)
- Introduced `docker-compose.yml` and `template.toml` for Garage S3.
- Added a new entry for Garage S3 in `meta.json` with relevant details and tags.
- Updated `docker-compose.yml` and `template.toml` in Garage S3 with UI for refined environment variables, authentication guidance, and token support.
- Bumped versions of Garage and Garage Web UI images.
2025-09-20 23:29:25 -06:00

28 lines
567 B
YAML

services:
garage:
image: dxflrs/garage:v2.0.0
volumes:
- ../files/garage.toml:/etc/garage.toml
- garage-storage:/var/lib/garage
- garage-storage:/var/lib/garage
restart: unless-stopped
ports:
- 3900
- 3901
- 3902
- 3903
garage-webui:
image: khairul169/garage-webui:1.1.0
restart: unless-stopped
volumes:
- ../files/garage.toml:/etc/garage.toml:ro
ports:
- 3909
environment:
- AUTH_USER_PASS
- API_BASE_URL
- S3_ENDPOINT_URL
volumes:
garage-storage: {}