mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 05:05:46 +02:00
Introduces the Entry and Attachment types that the storage plugin will use as the source of truth for named storage volumes, replacing the colon-delimited mount strings stored under docker-options. Entries persist as JSON under config/storage/entries and validate against scheduler-specific rules; attachments persist via the property list and capture how an app uses an entry. The legacy migration name synthesizer is also added so existing colon-form mounts can converge on a deterministic legacy- entry name. Existing storage commands are unchanged in this commit.
26 lines
436 B
Plaintext
26 lines
436 B
Plaintext
go 1.26.2
|
|
|
|
use (
|
|
./plugins/app-json
|
|
./plugins/apps
|
|
./plugins/builder
|
|
./plugins/buildpacks
|
|
./plugins/common
|
|
./plugins/config
|
|
./plugins/cron
|
|
./plugins/docker-options
|
|
./plugins/logs
|
|
./plugins/network
|
|
./plugins/nginx-vhosts
|
|
./plugins/ports
|
|
./plugins/proxy
|
|
./plugins/ps
|
|
./plugins/registry
|
|
./plugins/repo
|
|
./plugins/resource
|
|
./plugins/scheduler
|
|
./plugins/scheduler-docker-local
|
|
./plugins/scheduler-k3s
|
|
./plugins/storage
|
|
)
|