From e25493652152c968c6ebbcd4d7fd0f94cc27358f Mon Sep 17 00:00:00 2001 From: Umputun Date: Sat, 30 Jun 2018 13:12:04 -0500 Subject: [PATCH] move scripts to backend --- Dockerfile | 8 ++++---- {scripts => backend/scripts}/create-backup.sh | 0 {scripts => backend/scripts}/import-disqus.sh | 0 {scripts => backend/scripts}/migrate-data.sh | 0 {scripts => backend/scripts}/restore-backup.sh | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename {scripts => backend/scripts}/create-backup.sh (100%) rename {scripts => backend/scripts}/import-disqus.sh (100%) rename {scripts => backend/scripts}/migrate-data.sh (100%) rename {scripts => backend/scripts}/restore-backup.sh (100%) diff --git a/Dockerfile b/Dockerfile index c286f275..b8a9e70c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,10 +56,10 @@ FROM umputun/baseimage:app-latest WORKDIR /srv -ADD scripts/import-disqus.sh /srv/import-disqus.sh -ADD scripts/restore-backup.sh /srv/restore-backup.sh -ADD scripts/migrate-data.sh /srv/migrate-data.sh -ADD scripts/create-backup.sh /srv/create-backup.sh +ADD backend/scripts/import-disqus.sh /srv/import-disqus.sh +ADD backend/scripts/restore-backup.sh /srv/restore-backup.sh +ADD backend/scripts/migrate-data.sh /srv/migrate-data.sh +ADD backend/scripts/create-backup.sh /srv/create-backup.sh ADD start.sh /srv/start.sh diff --git a/scripts/create-backup.sh b/backend/scripts/create-backup.sh similarity index 100% rename from scripts/create-backup.sh rename to backend/scripts/create-backup.sh diff --git a/scripts/import-disqus.sh b/backend/scripts/import-disqus.sh similarity index 100% rename from scripts/import-disqus.sh rename to backend/scripts/import-disqus.sh diff --git a/scripts/migrate-data.sh b/backend/scripts/migrate-data.sh similarity index 100% rename from scripts/migrate-data.sh rename to backend/scripts/migrate-data.sh diff --git a/scripts/restore-backup.sh b/backend/scripts/restore-backup.sh similarity index 100% rename from scripts/restore-backup.sh rename to backend/scripts/restore-backup.sh