• 【打工日常】使用docker部署个人实时在线文档协助编辑器


    一、Etherpad介绍

    Etherpad是一个高度可定制的开源在线编辑器,提供真正实时的协作编辑。放在自己的服务器里面,可以更大程度的保护自己工作的隐私,并且Etherpad允许您实时协作编辑文档,就像在浏览器中运行的实时多人编辑器一样这样不管是工作摸鱼在协助文档聊天或者游戏,还是说我们自己开发东西保持一定的安全性提供了保障,毕竟是部署在自己的环境上,相对来说比放在别人的db安全的。

    二、本次实践介绍

    本次实践简介

    本次实践部署环境为个人测试环境

    本地环境规划

    本次实践环境规划:下载镜像etherpad/etherpad:latest,通过docker-cli或者docker compose启动容器

    镜像命名IP地址容器镜像版本操作系统版本
    etherpadlocalhostlatestubuntu 22.04

    三、检查本地Docker环境

    检查本地Docker版本

    1. 检查Docker版本:docker version
    2. root@WellDone:/home/goodjob# docker version
    3. Client: Docker Engine - Community
    4. Version: 25.0.0
    5. API version: 1.44
    6. Go version: go1.21.6
    7. Git commit: e758fe5
    8. Built: Thu Jan 18 17:09:49 2024
    9. OS/Arch: linux/amd64
    10. Context: default
    11. Server: Docker Engine - Community
    12. Engine:
    13. Version: 25.0.0
    14. API version: 1.44 (minimum version 1.24)
    15. Go version: go1.21.6
    16. Git commit: 615dfdf
    17. Built: Thu Jan 18 17:09:49 2024
    18. OS/Arch: linux/amd64
    19. Experimental: false
    20. containerd:
    21. Version: 1.6.27
    22. GitCommit: a1496014c916f9e62104b33d1bb5bd03b0858e59
    23. runc:
    24. Version: 1.1.11
    25. GitCommit: v1.1.11-0-g4bccb38
    26. docker-init:
    27. Version: 0.19.0
    28. GitCommit: de40ad0
    29. root@WellDone:/home/goodjob#

    检查Docker服务状态

    检查Docker服务状态,确保Docker服务正常运行。

    1. systemctl status docker
    2. root@WellDone:/home/goodjob/Downloads# systemctl status docker
    3. ● docker.service - Docker Application Container Engine
    4. Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
    5. Active: active (running) since Wed 2024-01-24 08:54:31 CST; 1 day 4h ago
    6. TriggeredBy: ● docker.socket
    7. Docs: https://docs.docker.com
    8. Main PID: 1549 (dockerd)
    9. Tasks: 65
    10. Memory: 419.5M
    11. CPU: 38.874s
    12. CGroup: /system.slice/docker.service
    13. ├─ 1549 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
    14. ├─ 2010 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 6379 -container-ip 172.17.0.2 -container-port 6379
    15. ├─ 2016 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 6379 -container-ip 172.17.0.2 -container-port 6379
    16. ├─ 2029 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 5432 -container-ip 172.17.0.3 -container-port 5432
    17. ├─ 2036 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 5432 -container-ip 172.17.0.3 -container-port 5432
    18. ├─123083 /usr/bin/docker-proxy -proto tcp -host-ip 0.0.0.0 -host-port 8888 -container-ip 172.17.0.4 -container-port 8080
    19. └─123095 /usr/bin/docker-proxy -proto tcp -host-ip :: -host-port 8888 -container-ip 172.17.0.4 -container-port 8080
    20. 124 08:54:31 WellDone dockerd[1549]: time="2024-01-24T08:54:31.067895045+08:00" level=info msg="API listen on /run/docker.sock"
    21. 124 08:54:31 WellDone systemd[1]: Started Docker Application Container Engine.
    22. 124 16:13:48 WellDone dockerd[1549]: time="2024-01-24T16:13:48.185008219+08:00" level=info msg="ignoring event" container=8ad99af82d8a41dd661d>
    23. 124 16:13:48 WellDone dockerd[1549]: time="2024-01-24T16:13:48.189484205+08:00" level=warning msg="ShouldRestart failed, container will not be>
    24. 1月 24 21:58:08 WellDone dockerd[1549]: time="2024-01-24T21:58:08.024915139+08:00" level=info msg="ignoring event" container=27fd28e2993f31b170b8>
    25. 1月 24 21:58:08 WellDone dockerd[1549]: time="2024-01-24T21:58:08.029986730+08:00" level=warning msg="ShouldRestart failed, container will not be>
    26. 125 10:46:16 WellDone dockerd[1549]: time="2024-01-25T10:46:16.329180722+08:00" level=info msg="Container failed to exit within 10s of signal >
    27. 1月 25 10:46:16 WellDone dockerd[1549]: time="2024-01-25T10:46:16.350757439+08:00" level=info msg="ignoring event" container=b1223add00f36bbb3246>
    28. 1月 25 10:49:21 WellDone dockerd[1549]: time="2024-01-25T10:49:21.993755983+08:00" level=info msg="Container failed to exit within 10s of signal >
    29. 125 10:49:22 WellDone dockerd[1549]: time="2024-01-25T10:49:22.015822650+08:00" level=info msg="ignoring event" container=edb0e153b45dbe62acd8>
    30. lines 1-28/28 (END)

    四、部署etherpad镜像

    下载etherpad镜像

    docker pull etherpad/etherpad:latest
    

    创建容器

    使用docker快速创建etherpad的容器。

    1. 完整创建过程:
    2. 1.使用docker-cli启动一个etherpad的容器。
    3. docker run -d --name etherpad --restart always -p 3344:9001 -v /opt/etherpad/data:/opt/etherpad-lite/var etherpad/etherpad:latest
    4. 2.使用docker-compose启动一个etherpad的容器
    5. version: '3.9'
    6. services:
    7. etherpad:
    8. image: 'etherpad/etherpad:latest'
    9. volumes:
    10. - '/opt/etherpad/data:/opt/etherpad-lite/var'
    11. ports:
    12. - '3344:9001'
    13. restart: always
    14. container_name: etherpad
    15. 3.容器启动正常,访问
    16. http://ip:3344

    检查容器运行状态

    检查容器的运行状态,确保服务的正常运行。

    docker ps

    1. root@WellDone:/home/goodjob# docker ps
    2. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
    3. etherpad etherpad/etherpad:latest "docker-entrypoint.s…" etherpad 40 seconds ago Up 38 seconds (healthy) 0.0.0.0:3344->9001/tcp, :::3344->9001/tcp

    五、访问etherpad页面

    访问etherpad首页 访问地址:http://localhost:3344

  • 相关阅读:
    l8-d12 IP协议与ethernet协议
    如何在excel表中实现单元格满足条件时整行变色?
    场馆系统的数据分析功能怎么样?
    SSM整合
    1017 Queueing at Bank
    newstarctf2022week2
    鸿蒙小案例-动态歌词
    mysql与缓存数据不一致解决-canal+mq方案
    数据结构和算法——绪论
    【MyBatis XML实现批量删除操作】
  • 原文地址:https://blog.csdn.net/treasure0911/article/details/136593154