From a23f262983c5779807bb6be51ff9a240b63629c5 Mon Sep 17 00:00:00 2001 From: Bertrand Date: Mon, 6 Jun 2022 21:27:58 +0200 Subject: [PATCH] add readme help file --- ghost/README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ghost/README.md diff --git a/ghost/README.md b/ghost/README.md new file mode 100644 index 0000000..fc0a33b --- /dev/null +++ b/ghost/README.md @@ -0,0 +1,20 @@ +```bash + +# CREATE GHOST CONTAINER +sudo docker run -d --name blog.noobtoroot.xyz -p 3001:2368 -e url=https://blog.noobtoroot.xyz ghost + +# TRANSFER BACKUP ARCHITE INSIDE CONTAINER +sudo docker cp content.tar.gz blog.noobtoroot.xyz:/var/lib/ghost/ + +# CONNECT TO TERMINAL INSIDE CONTAINER +sudo docker exec -u root -it blog.noobtoroot.xyz /bin/bash + +# EXTRACT AND COPY CONTENT BACKUP TO NEW CONTENT +mkdir -p /contentbackup/ +tar -zxvf content.tar.gz -C /contentbackup/ +cp -R /contentbackup/var/www/noobtoroot/content/images/* /var/lib/ghost/content/images/ + +# CHANGE OWNERSHIP +chown node:node content/* + +``` \ No newline at end of file