mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-04-27 14:29:31 +07:00
28 lines
618 B
YAML
28 lines
618 B
YAML
services:
|
|
garage:
|
|
image: dxflrs/garage:v1.0.1
|
|
container_name: garage
|
|
volumes:
|
|
- ./garage.toml:/etc/garage.toml
|
|
- ./meta:/var/lib/garage/meta
|
|
- ./data:/var/lib/garage/data
|
|
restart: unless-stopped
|
|
ports:
|
|
- 3900:3900
|
|
- 3901:3901
|
|
- 3902:3903
|
|
- 3903:3903
|
|
|
|
webui:
|
|
image: khairul169/garage-webui:latest
|
|
container_name: garage-webui
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./garage.toml:/etc/garage.toml:ro
|
|
ports:
|
|
- 3909:3909
|
|
environment:
|
|
API_BASE_URL: "http://garage:3903"
|
|
S3_ENDPOINT_URL: "http://garage:3900"
|
|
|