- Add a new docker installer. - Includes functionality for installing, starting, stopping, and removing docker. Co-authored-by: mariobassem12 <mariobassem12@gmail.com> Co-authored-by: omda <mahmmoud.hassanein@gmail.com>
12 lines
280 B
GLSL
Executable File
12 lines
280 B
GLSL
Executable File
#!/usr/bin/env -S v -n -w -gc none -no-retry-compilation -cc tcc -d use_openssl -enable-globals run
|
|
|
|
import freeflowuniverse.herolib.installers.virt.docker as docker_installer
|
|
|
|
mut docker := docker_installer.get()!
|
|
|
|
// To install
|
|
docker.install()!
|
|
|
|
// To remove
|
|
docker.destroy()!
|