How to remove discourse website

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:

  1. List you local docker images from the host: docker images
  2. Find the discourse image. It should look something like
    REPOSITORY            TAG                 IMAGE ID            CREATED             SIZE
    discourse/discourse   1.3.10              95332d4db04b        5 weeks ago         1.52GB
    
  3. Remove the image: docker image rm discourse/discourse:1.3.10. Remember to use the exact same name and version your docker output showed you.
  4. Remove the location you cloned the discourse. If you followed the installation instructions, it should be /var/discourse, so rm -r /var/discourse should do it.
  5. [optional]. If you don’t need docker anymore, remove it from your machine.

أوامر ممتازة. كنت أتساءل عن ذلك أيضًا.

شئان صغيران:
تلقّيت الرسالة "تعذر إزالة مرجع المستودع “اسم الصورة” (يجب إجبارها)؛ الحاوية iccfa6e6d14b تستخدم الصورة المرجعية 654a4f02e531.

  1. كيف يمكننا منع استخدام الصورة؟ إذا قمنا بإيقاف قطرة (Droplet)، فلن تعمل وحدة التحكم.

  2. هل Docker شيء منفصل عن نظام تشغيل Ubuntu Server الأساسي؟

شكرًا لك.

إذا قمت بتدمير الـ droplet، فسيختفي discourse معه، وبالتالي لا يهم أي من هذا، ولكن…

أعتقد أنك تحتاج إلى تنفيذ الأمر

docker stop app

أو

. /launcher stop app

قبل أن تتمكن من إزالة الصورة.

شكرًا لك مجددًا.
لكنني أتمنى لو كنت أيضًا تجيب على سؤالي الثاني، الذي أعتقد أن إجابته يجب أن تكون جملة واحدة تقريبًا.

لقد بحثت في جوجل عن هذه الإجابة لمدة ساعة تقريبًا.
وقد قرأت كل هذه المناقشة حول هذا الموضوع على الميتا، هنا.

لكنني لم أستطع الفهم.
يمكنني تكرار معضلتي:
هل الأمر هو أن هناك نظام تشغيل أوبونتو، ثم هناك تثبيت عادي لـ Docker عليه/داخله.
وفي هذا التثبيت لـ Docker يعمل Discourse Docker؟
أم أنه ببساطة نظام تشغيل Ubuntu Server مع تثبيت/تشغيل Discourse Docker عليه؟
أم أنه لا يُسمى ‘Discourse Docker’ بل شيء آخر؟

ملاحظة جانبية: لقد حاولت أيضًا فهم نفس الأمر من خلال هذا الموضوع الطويل. لكنه لم يكن كافيًا للإجابة على استفساري (كان قريبًا جدًا، لكنه لم يصل تمامًا).

نعم. لديك نظام تشغيل Ubuntu، ثم تطبيق Docker مثبت على نظام التشغيل، وDiscourse يعمل فوق Docker.

يقوم Docker بإنشاء إمكانية عزل التطبيقات في حاويات (لنبسط الأمر كأنها آلة افتراضية خفيفة الوزن)، حيث يمكنك تشغيل تطبيقات متعددة دون التأثير على نظام التشغيل.

لقد قمت بإزالة حاوية بيانات Docker (وربما حاوية web_only أيضًا)، ولكن حتى الآن، عند إعادة تثبيت أو إعادة إنشاء حاوية البيانات، تظهر نفس حسابات المسؤول/المستخدمين (وإعدادات) مرة أخرى.

أرغب في البدء من جديد لتنصيب Discourse بشكل نظيف. هل أحتاج حقًا إلى إلغاء تثبيت Docker للقيام بذلك؟ أم يجب إزالة مجلد /var/discourse بالكامل؟

أليس هناك مجلد واحد أو موقع واحد يحمل جميع بياناته، بحيث يؤدي حذفه إلى إزالة جميع إعدادات Discourse، والمستخدمين، والمسؤولين، والمنشورات؟

شكرًا لك.

rm -rf /var/discourse/shared

ثم أعد البناء. هذا هو المكان الذي تُحفظ فيه وحدات التخزين الدافعة بشكل افتراضي.