docker 运行了一个 discuz, 但是因为 vps 运行商重启机器停掉了.
当用 docker restart 重启这个容器时,起不来. 有知道原因的吗?
当时启动时的情况: docker run --name my-discuz2 --link bbs-mysql:mysql -p 127.0.0.1:8080:80 -d skyzhou/docker-discuz
docker start -i xxxx 报错情况: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.17.0.5. Set the 'ServerName' directive globally to suppress this message httpd (pid 1) already running
1
singer 2018-01-06 16:40:41 +08:00 via iPhone
docker ps -a 先看看已存在但没运行起来的容器。
然后选择你的容器的 id,docker start id |
2
ge2009 2018-01-07 19:55:14 +08:00
我觉得楼主这种可以直接写 docker compose 会更方便和好用些吧.
|