-
Install Ansible Tower On Centos7
Step 1: Update system and add EPEL repository We need the EPEL repository for this installation. Update your CentOS 7 system and add EPEL repository. sudo yum -y update sudo yum -y install epel-release For CentOS / RHEL 8, use: How to enable EPEL Repository on CentOS / RHEL 8...
-
Cross Building And Running Multiarch Docker Images
https://www.ecliptik.com/Cross-Building-and-Running-Multi-Arch-Docker-Images/#multiarch-on-linux http://budevg.github.io/posts/docker/2018/08/02/docker-cross-compile.html https://github.com/multiarch/qemu-user-static/blob/master/README.md Run the following command to register qemu-user-static for running multiarch containers in Linux system: docker run --rm --privileged multiarch/qemu-user-static:register --reset You can then run any docker image with installed emu-user-static binary such as: balenalib docker images: https://hub.docker.com/r/balenalib/raspberry-pi multiarch docker images: https://hub.docker.com/u/multiarch/
-
Containerize Node App With Docker
Dockerizing a Node.js web app Creating a Dockerfile Create an empty file called Dockerfile: touch Dockerfile Open the Dockerfile in your favorite text editor The first thing we need to do is define from what image we want to build from. Here we will use the latest LTS (long term...