caojun@caojun-NMH-WCX9:~/07-docker$ docker search ubuntu:22.04 NAME DESCRIPTION STARS OFFICIAL ubuntu Ubuntu is a Debian-based Linux operating sys… 17202 [OK] ubuntu-debootstrap DEPRECATED; use "ubuntu" instead 52 [OK] ubuntu-upstart DEPRECATED, as is Upstart (find other proces… 115 [OK] apache/cassandra-testing-ubuntu2004-java11 https://github.com/apache/cassandra-builds/t… 2 antrea/antrea-ubuntu-arm64 2 osrf/ubuntu_i386 Ubuntu i386 Docker Base Images 2 istio/app_sidecar_base_ubuntu_xenial Image for testing 0 istio/app_sidecar_ubuntu_jammy Image for testing 0 envoyproxy/envoy-build-ubuntu 7 eclipse/ubuntu_jdk8 Ubuntu, JDK8, Maven 3, git, curl, nmap, mc, … 17 osrf/ubuntu_arm64 Ubuntu Arm64 Base Images 1 dokken/ubuntu-20.04 Ubuntu 20.04 image for use with Test Kitchen… 3 opensciencegrid/osgvo-ubuntu-18.04 OSG VO's base Ubuntu 18.04 image 0 dokken/ubuntu-18.04 Ubuntu 18.04 image for use with Test Kitchen… 5 fnndsc/ubuntu-python3 A slim Ubuntu-based Python3 image 33 apache/cassandra-ubuntu2004_test Apache Cassandra 0 jenkinsciinfra/jenkins-agent-ubuntu-20.04 "All-in-one" agent image for the Jenkins Inf… 1 antrea/ubuntu 1 dokken/ubuntu-22.04 Ubuntu 22.04 image for use with Test Kitchen… 3 antrea/base-ubuntu 1 ubuntu/cortex Cortex provides storage for Prometheus. Long… 4 jenkinsciinfra/jenkins-agent-ubuntu-22.04 "All-in-one" agent image for the Jenkins Inf… 0 gmao/ubuntu20-geos-env 0 dokken/ubuntu-16.04 Ubuntu 16.04 image for use with Test Kitchen… 2 pytorch/pytorch-binary-docker-image-ubuntu16.04 6
caojun@caojun-NMH-WCX9:~/07-docker$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE ubuntu 22.04 8a3cdc4d1ad3 6 weeks ago 77.9MB ubuntu 20.04 5f5250218d28 2 months ago 72.8MB hello-world latest d2c94e258dcb 15 months ago 13.3kB
# 为博客创建根目录 mkdir -p /workspace/blog cd /workspace/blog
# 初始化博客 hexo init
# 运行博客,可以通过参数-p指定端口,默认端口是4000 hexo s
在执行:hexo s 时会失败,提示如下报错:
1
{% extends ‘_layout.swig‘ %} {% import ‘_macro/post.swig‘ as post_template %}
经过在网上查找,发现hexo缺少了swig模块,现在将该模块下载到本地
1 2 3
cd /workspace/blog npm i hexo-renderer-swig
再次运行博客,可以看下如下提示:
1 2 3 4 5 6 7 8 9 10 11 12 13
cj@52e0bd6293ac:/workspace/blog$ hexo s INFO Validating config INFO Start processing WARN =============================================================== WARN ========================= ATTENTION! ========================== WARN =============================================================== WARN NexT repository is moving here: https://github.com/theme-next WARN =============================================================== WARN It's rebase to v6.0.0 and future maintenance will resume there WARN =============================================================== INFO Hexo is running at http://localhost:4000/ . Press Ctrl+C to stop.