Sunday, May 12, 2019

Seedr.cc - Torrent leeching website

Image result for seedr image
I had came across Seedr.cc when seeking online for solution for torrent leeching website. My needs are simple, it's FREE and it provide me FREE usage up to 2GB. Which so far, Seedr.cc is able to fulfill my needs in this case. It provide free 2GB cloud storage for downloading your torrents online. For additional free space, you can carry out some additional tasks as mentioned after you login to your Seeder.cc account. However, i am new user for Seedr.cc, if you are finding some similar solution, maybe you can give it a try as well using the following link :

Seeder.cc - Torrent leeching website

Monday, January 07, 2019

Useful Docker Command

Image result for docker
Here are some useful docker command :
1. to list container
$ docker ps
2. to stop container
$ docker stop myRedmine
3. to remove a container
$ docker rm myRedmine
4. to list downloaded images
$ docker image ls -a
5. to remove downloaded images
$ docker image rm hello-world
6. Running into linux container'shell
$ docker exec -i -t [container's name] /bin/bash
7. Copy file to the container
$ docker cp file.tx [contqainer_id]:/[target_folder_and_filename]