Skip to content

Latest commit

 

History

History
86 lines (55 loc) · 1.76 KB

README.md

File metadata and controls

86 lines (55 loc) · 1.76 KB

Healthcare Facilities

Contents

Usage

Prerequisites

  • A Linux-based operating system
  • wget installed on your system

Miniconda Installation

This script automates the installation of Miniconda on a Linux system. It downloads the Miniconda installer, installs it, and sets up the environment.

To learn more about Miniconda, visit the official documentation by clicking on this link: Miniconda Documentation

Instructions:

  1. Navigate to the bin directory:
cd bin
  1. Make the script executable:
chmod +x install_miniconda.sh
  1. Run the script:
./install_miniconda.sh

Docker installation

This script automates the installation of Docker on a Linux system. It downloads and installs the latest version of Docker engine and Docker Compose, adds the current user to the docker group, and sets up the environment.

To learn more about Docker, visit the official documentation by clicking on this link: Docker Documentation

Instructions:

  1. Navigate to the bin directory:
cd bin
  1. Make the script executable:
chmod +x install_docker.sh
  1. Run the script:
./install_docker.sh

Extras

To uninstall Miniconda, run the following command:

rm -rf ~/miniconda

To uninstall Docker, run the following commands:

sudo apt-get purge docker-ce docker-ce-cli containerd.io
sudo rm -rf /var/lib/docker
sudo groupdel docker

Note: The above commands will remove Docker and all its associated files from your system. Use with caution.