Install docker compose using YUM in Photon OS
Install python-pip
$ yum install -y python-pip
Then install Docker Compose:
$ pip install docker-compose
To verify a successful Docker Compose installation, run:
$ docker-compose version

Install python-pip
$ yum install -y python-pip
Then install Docker Compose:
$ pip install docker-compose
To verify a successful Docker Compose installation, run:
$ docker-compose version

Adjust your rotate and font size values as per your requirement <style type=”text/css”> #asvignesh-watermark { color: #d0d0d0; width: 100%; font-size: 198pt; -webkit-transform: rotate(-47deg); -moz-transform: rotate(-47deg); height: 100%; margin: 0; z-index: -1; left:-100px; top:-200px; position: absolute; } </style> <div id=”asvignesh-watermark”> <p>Vignesh A Sathiyanantham</p> </div>
Recently, Google added an exciting feature to Google Drive “web hosting!” It allows you to host a website build on html , css , js in google drive build a website. And did I mention that it’s free? Yep, it’s just one of the little perks that comes with a Google account. You can see…
Using Base64 encoded images in website Encode the image to base64 in php <?php $image = file_get_contents(“https://www.facebook.com/images/fb_icon_325x325.png”); $base64 = base64_encode($image); echo $base64; // This will echo the encoded base64 image ?> Load images in website using php: <?php $image = file_get_contents(“https://www.facebook.com/images/fb_icon_325x325.png”); $base64 = base64_encode($image); echo $base64; // This will echo the encoded base64 image ?>…
There is an updated rolled out for chrome today which adds adds a new menu in the top-right of the chrome browser that allows the user to manages the user accounts. Many people feels it as ugly and a bit obnoxious, If you are the one who doesn’t switch the accounts often here is the…
Lots of web servers are running in LAMP stack, as ubuntu is easy to install and configure and many advantages people prefer ubuntu server, Ubuntu server is completely command based , you need to do all the operation using the ubuntu Terminal… For the Ubuntu Desktop users who are not very good in ubuntu commands…
Removing index.php in Codeigniter application url in godaddy shared hosting server Create the .htaccess file under root of application directory RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond $1 !^(index.php|robots.txt) RewriteRule ^(.*)$ index.php?/$1 [L] If you are getting “no input file specified” ( codeigniter / wordpress ) Login to godaddy account Goto…
Subscribe now to keep reading and get access to the full archive.