This CMS is a very good, but a lot of things modified. As difficult installation, modification, and so the addition of a plugin and etc.
I want uninstall my discourse website? Which command do I have to write for that?
This CMS is a very good, but a lot of things modified. As difficult installation, modification, and so the addition of a plugin and etc.
I want uninstall my discourse website? Which command do I have to write for that?
I’m not sure what you are asking? Are you looking to wipe the content of the forum?
rm -r /var/discourse
Will delete Discourse and all backups and everything. I’m not clear why not just shut down the droplet, though.
After
rm -r /var/discourse
site down.
500 Internal Server Error
If you are the administrator of this website, then please read this web application’s log file and/or the web server’s log file to find out what went wrong.
I want remove delete discourse cms from my website. How delete docker and discourse?
Edit: I just checked, and if you installed Docker with the http://get.docker.com’s script and are running Ubuntu,
apt-get purge docker-engine
should remove docker. You’ll probably need to reboot to make sure all docker processes get killed.
In short: whatever you did to get Discourse running, do the reverse of that.
If you want to completely remove discourse:
docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
discourse/discourse 1.3.10 95332d4db04b 5 weeks ago 1.52GB
docker image rm discourse/discourse:1.3.10. Remember to use the exact same name and version your docker output showed you.rm -r /var/discourse should do it.Very good commands. I too was wondering for them.
2 small things:
I received the msg "Unable to remove repository reference “image name” (must force) container iccfa6e6d14b is using its referenced image 654a4f02e531.
How can we stop the image from being used? If we turned off the droplet, then console wouldn’t work.
Is docker a separate thing from underlying Ubuntu Server OS?
Thanks.
If you destroy the droplet then discourse is gone with it, so none of this matters, but…
I think you need to do a
docker stop app
Or
. /launcher stop app
Before you can remove the image
Thanks again.
But I wished if you could also answer my 2nd question, which I believe must almost be a single line answer.
I’ve googled to know this answer for around 1 hour.
And I’ve read this whole discussion on this topic on meta, here.
But I couldn’t understand.
I could repeat my dilemma:
Whether it is such that
There is Ubuntu OS, and then there is a normal docker installation in it/on it.
And in that docker installation there is Discourse docker running?
Or its simply Ubuntu Server OS and Discourse Docker installed/running in it?
Or it is not called ‘Discourse Docker’ but something else?
P.S: I also tried to understand the same thru this long topic post. But it just fell short of telling my query (almost did, but just not).
Yes. You have Ubuntu as the OS, then Docker as an application installed in the OS, and Discourse running on top of Docker.
Docker creates the possibility to isolate applications in containers (let’s simplify it as a light weight Virtual Machine), where you can run multiple applications without messing up the OS
我删除了 Docker 数据容器(可能还有 web_only 容器),但即使重新安装/重新创建数据容器,相同的管理员/用户(和设置)仍然会出现。
我想从头开始全新安装 Discourse。为此我是否必须卸载 Docker?还是删除整个 /var/discourse 文件夹?
难道没有一个单独的文件夹或位置存储其数据,删除它就能清除所有 Discourse 设置、用户、管理员和帖子吗?
谢谢。
rm -rf /var/discourse/shared
然后重新构建。默认情况下,持久卷就存储在那里。