mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 05:05:46 +02:00
29 lines
1.0 KiB
Modula-2
29 lines
1.0 KiB
Modula-2
module github.com/dokku/dokku/plugins/scheduler-docker-local
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/dokku/dokku/plugins/common v0.0.0-00010101000000-000000000000
|
|
github.com/dokku/dokku/plugins/cron v0.0.0-00010101000000-000000000000
|
|
github.com/multiformats/go-base36 v0.2.0
|
|
golang.org/x/sync v0.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
|
|
github.com/codeskyblue/go-sh v0.0.0-20190412065543-76bd3d59ff27 // indirect
|
|
github.com/dokku/dokku/plugins/app-json v0.0.0-00010101000000-000000000000 // indirect
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
|
github.com/otiai10/copy v1.14.0 // indirect
|
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
|
github.com/ryanuber/columnize v2.1.2+incompatible // indirect
|
|
golang.org/x/sys v0.13.0 // indirect
|
|
mvdan.cc/sh/v3 v3.7.0 // indirect
|
|
)
|
|
|
|
replace github.com/dokku/dokku/plugins/app-json => ../app-json
|
|
|
|
replace github.com/dokku/dokku/plugins/common => ../common
|
|
|
|
replace github.com/dokku/dokku/plugins/cron => ../cron
|