使用hugo镜像立青人韦 收录于 Hugo 2022-06-05 约 369 字 预计阅读 1 分钟 次阅读目录 docker-compose使用hugoklakegg/hugo是官方推荐的,包含hugo开源静态网站生成器的镜像。docker-compose 1 2 3 4 5 6 7 8 9 10 11 12 version: '3' services: hugo: container_name: "×××.github.io" image: "klakegg/hugo:latest" ports: - "1313:1313" volumes: - "~/×××.github.io.source:/×××.github.io.source" working_dir: "/×××.github.io.source" command: ["server", "-D"] 使用hugo启动服务:1 docker-compose up -d 启动服务之后就会有相关容器在运行。如果要新建博文:1 docker exec -it ${container_id} hugo new content/posts/Ubuntu/test.md 以上面为例,可以调用hugo的其他命令。