mirror of
https://github.com/danbulant/docker-compose
synced 2026-06-12 11:11:33 +00:00
feat(dx): add default export
This commit is contained in:
parent
7eaf706be9
commit
c4b60872ae
1 changed files with 30 additions and 0 deletions
30
src/index.ts
30
src/index.ts
|
|
@ -489,3 +489,33 @@ export const version = async function (
|
|||
return Promise.reject(error)
|
||||
}
|
||||
}
|
||||
|
||||
export default {
|
||||
upAll,
|
||||
upMany,
|
||||
upOne,
|
||||
down,
|
||||
stop,
|
||||
stopOne,
|
||||
kill,
|
||||
rm,
|
||||
exec,
|
||||
run,
|
||||
buildAll,
|
||||
buildMany,
|
||||
buildOne,
|
||||
pullAll,
|
||||
pullMany,
|
||||
pullOne,
|
||||
config,
|
||||
configServices,
|
||||
configVolumes,
|
||||
ps,
|
||||
push,
|
||||
restartAll,
|
||||
restartMany,
|
||||
restartOne,
|
||||
logs,
|
||||
port,
|
||||
version
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue