Sign inSign up

kale5/rickroll

By kale5

Updated over 4 years ago

As stated in title. RICKROLL

Image
7

50K+

kale5/rickroll repository overview

Hello Everyone,

This is a simple to deploy rickroll image. You can deploy it on any docker instance. Enjoy RickRolling! There is also VOICECRACKED Rickroll Image LOL. Credits to MrMeme Youtube for making the voice cracked video! Massive Thanks to ShatteredDisk for the amazing html that allows for the auto playing rickroll 😂.

Normal Rickroll

For x86:

Docker Compose:

version: '3'
services:
  rickroll:
    container_name: rickroll
    image: 'kale5/rickroll:latest'
    restart: unless-stopped
    ports:
      - '8080:80'

Then run:

docker-compose up -d

Docker CLI: Copy and Paste This:

docker run -dit -p 8080:80 --name rickroll --restart unless-stopped kale5/rickroll:latest

For arm64:

Docker Compose:

version: '3'
services:
  rickroll:
    container_name: rickroll
    image: 'kale5/rickroll:arm64'
    restart: unless-stopped
    ports:
      - '8080:80'

Then run:

docker-compose up -d

Docker CLI: Copy and Paste This:

docker run -dit -p 8080:80 --name rickroll --restart unless-stopped kale5/rickroll:arm64

Voice Crack Rickroll

For x86:

Docker Compose:

version: '3'
services:
  rickroll:
    container_name: rickrollvc
    image: 'kale5/rickroll:vclatest'
    restart: unless-stopped
    ports:
      - '8080:80'

Then run:

docker-compose up -d

Docker CLI: Copy and Paste This:

docker run -dit -p 8080:80 --name rickrollvc --restart unless-stopped kale5/rickroll:vclatest

For arm64:

Docker Compose:

version: '3'
services:
  rickroll:
    container_name: rickrollvc
    image: 'kale5/rickroll:vcarm64'
    restart: unless-stopped
    ports:
      - '8080:80'

Then run:

docker-compose up -d

Docker CLI: Copy and Paste This:

docker run -dit -p 8080:80 --name rickrollvc --restart unless-stopped kale5/rickroll:vcarm64

Tag summary

Content type

Image

Digest

Size

144.4 MB

Last updated

over 4 years ago

docker pull kale5/rickroll