banner
DarianBlog

DarianBlog

达里安博客-专注于技术分享与交流的博客。博客致力于创造一个简单而直接的技术学习平台。
email

Quickly create a free personal cloud computer that can be used for account registration, etc.

1. Register an Account#

First, register a free Docker account to create instances for user login.

2. Login and Use#

After registration, log in to Play With Docker and simply copy and paste step by step.
Note: To avoid resource abuse, each login is limited to four hours, which is sufficient for account registration and browsing web pages.

mkdir /root/ubuntu && cd /root/ubuntu
apk add nano
nano docker-compose.yml
version: '3.5'

services:
    ubuntu-xfce-vnc:
        container_name: xfce
        image: imlala/ubuntu-xfce-vnc-novnc:latest
        shm_size: "2gb"
        ports:
            - 5555:5900
            - 6666:6080
        environment: 
            - VNC_PASSWD=shopifyisfine
            - GEOMETRY=1920x1080
            - DEPTH=24
        volumes: 
            - ./Downloads:/root/Downloads
        restart: unless-stopped

Note: After pasting, press Ctrl + X, then press Y, and then press Enter to save.

docker-compose up -d

Open port 6666 and use the following login password:

shopifyisfine
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.