Home

Terraform Vs Ansible

Terraform and Ansible are both powerful tools, each with their own strengths. Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. It is great for setting up and managing the low-level infrastructure components such as compute instances, storage, and networking. Ansible, on the other hand, is a powe...

Read more

Manual Addition of Docker Images to Kasm

Step 1: Navigation In the Kasm administrative panel, navigate to Workspaces > Workspaces, then click the blue Add Workspace button. On another tab, open the registry for the images: https://nighthawkcoders.github.io/kasm_registry/1.0/ Step 2: Filling everything out Follow the below configuration, use information you can get from the reg...

Read more

Cronjob for Container Restart

Create a Script to Check the Docker Container and Manage Port 443: Create a script, say check_and_restart_docker.sh, with the following content: ```bash #!/bin/bash # Docker container ID to check CONTAINER_ID="875ca0bef633" # Check if the Docker container is running if ! docker ps | grep -q "$CONTAINER_ID"; then echo "Docker c...

Read more