TikTok Copycat

  1. Go to Tik Tock an search for
Motivational Quotes
or Inspirational Quotes

Select something you like, or example:

You can’t go back and change the beginning, but you can start where you are and change the ending.

C.S. Lewis

2. Find a stock video and download it from

pexels.com
pixabay.com

3. Edit the video an the quote on

VEED.IO

Click on “New Video” => “Create project”.

Upload the video. You can also use their free stock videos if you want.

Go to Settings and choose the size to be TikTok.

Go to Subtitles. Add a separate subtitle line for each video. Choose the styles / effects for the subtitles and align them with the video clips. Correct the position of the subtitles on the screen if needed.

4. Find a viral TikTok video and download the song using https://ssstik.io/

or download music from YouTube using https://www.converto.io/

Then add it to VEED.IO project under Audio.

Once everything looks good, download the video. The free version will have VEED.IO watermark. You either have to get the paid version or use one of the free video editors mentioned here:

Kdenlive provides a good balance between features and learning curve.
Once the video is rendered and downloaded, you can upload it.

5. Go to clickbank.com to monetize your video on TikTok.

https://accounts.clickbank.com/marketplace.htm#/results?category=Spirituality%2C+New+Age+%26+Alternative+Beliefs

Choose a product and generate a HopLink.

6. Go to Linktree and create a free landing page for your bio? This is where you add all of your social accounts.

https://linktr.ee/admin

7. Paste the Linktree link into the TikTok Bio.

How to Update Portainer to the Newest Version

How to Update Portainer to the Newest Version

In OpenMediaVaultPortainer by dbtechAugust 27, 2021Leave a Comment

In this blog post we’ll look at a couple of ways to update Portainer on your system. First we’ll look at how to update Portainer using OpenMediaVault. Then we’ll look at how to update Portainer on a standard Docker setup.

OpenMediaVault Setup

If you have OpenMediaVault installed, the process is super simple. Just login to OMV and go to OMV-Extras, then click the Docker tab. On that page, you can click the Portainer dropdown and then just click install. This will update your Portainer container even if you already have Portainer installed.

Standard Docker Setup

If you already have Portainer installed, you’ll need to stop and remove it from your system before you upgrade the container.

To do that, run this command:

sudo docker stop portainer && sudo docker rm portainer

You will probably be prompted for your sudo password. Enter that and then the system will remove the Portainer container, but it will NOT delete your Portainer data as we didn’t remove that.

Next, you’ll want to pull the latest Portainer image:

docker pull portainer/portainer-ce:latest

Once that is done, you’re ready to deploy the newest version of Portainer:

docker run -d -p 9000:9000 -p 8000:8000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest

Now you can go to http://your-server-address:9000 and login.