Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: check docker is installed or not #13

Open
sevilayerkan opened this issue Apr 20, 2023 · 1 comment
Open

feat: check docker is installed or not #13

sevilayerkan opened this issue Apr 20, 2023 · 1 comment
Assignees
Labels
phase2 For issues needs to be done at phase 2 to-do To-do
Milestone

Comments

@sevilayerkan
Copy link
Owner

Pseudocode of this function:

check_install() bool *
{
 if(docker is installed){
  return 1
 } else{
  return 0
 }
}

OS difference should be taken into account.

@sevilayerkan sevilayerkan self-assigned this Apr 20, 2023
@sevilayerkan sevilayerkan added phase2 For issues needs to be done at phase 2 enhancement New feature or request labels Apr 20, 2023
@sevilayerkan sevilayerkan added this to the Phase 2 milestone Apr 20, 2023
@sevilayerkan
Copy link
Owner Author

install() function and isInstalled() function needs to be implemented since they are working together they would be written at the same time

isInstalled()  //This function will also work before app gets started

install(){
    if(isInstalled())
        return
    else
        install docker

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
phase2 For issues needs to be done at phase 2 to-do To-do
Projects
None yet
Development

No branches or pull requests

1 participant