本人使用 docker compose 进行了搭建

docker 镜像地址: 点击跳转

version: '3'

services:
  typecho-blog:
    image: 80x86/typecho:latest
    container_name: typecho-blog
    ports:
      - "90:80"
    environment:
      - PHP_TZ=Asia/Shanghai
      - PHP_MAX_EXECUTION_TIME=600
    volumes:
      - typecho_data:/data
      - type=tmpfs,target=/tmp
    restart: always

volumes:
  typecho_data:
    external: false