mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-04-27 22:39:31 +07:00
22 lines
502 B
YAML
22 lines
502 B
YAML
services:
|
|
garage:
|
|
image: dxflrs/garage:v1.0.0
|
|
container_name: garage
|
|
volumes:
|
|
- ./garage.toml:/etc/garage.toml
|
|
- ./meta:/var/lib/garage/meta
|
|
- ./data:/var/lib/garage/data
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
|
|
webui:
|
|
image: khairul169/garage-webui:latest
|
|
container_name: garage-webui
|
|
restart: unless-stopped
|
|
environment:
|
|
- CONFIG_PATH=/etc/garage.toml
|
|
volumes:
|
|
- ./garage.toml:/etc/garage.toml
|
|
ports:
|
|
- 3909:3909
|