Sure, here is a tutorial on how to install Gatus on Alpine Linux Latest.

Step 1: Install Docker

Firstly, you need to install Docker on your Alpine Linux. To do that, open a terminal and run the following command:

$ apk -U add docker

This command will install Docker on your Alpine Linux system.

Step 2: Install Git

Next, you need to install Git on your system to clone the Gatus repository from GitHub. To install Git, run the following command:

$ apk -U add git

Step 3: Clone Gatus Repository

Now, you need to clone the Gatus repository from GitHub using Git. Run the following command to clone the repository:

$ git clone https://github.com/TwiN/gatus.git

This command will clone the Gatus repository to your current directory.

Step 4: Build Gatus Docker Image

After cloning the repository, navigate to the cloned directory using the following command:

$ cd gatus

Now, build the Gatus Docker image using the following command:

$ docker build -t gatus .

This command will build the Gatus Docker image with the tag "gatus".

Step 5: Run Gatus Docker Container

Finally, run the Gatus Docker container using the following command:

$ docker run -it --rm -p 8080:8080 gatus

This command will run the Gatus Docker container and map the container's port 8080 to the host's port 8080.

Step 6: Access Gatus Web UI

Now that your Gatus Docker container is running, you can access the Gatus web UI by opening a web browser and navigating to the following URL:

http://localhost:8080/

This will open the Gatus web UI, and you can start adding your HTTP services to it.

Congratulations! You have successfully installed Gatus on Alpine Linux Latest.