summaryrefslogtreecommitdiff
path: root/images
diff options
context:
space:
mode:
authorSystem administrator2017-06-01 10:44:24 +0200
committerSystem administrator2017-06-01 10:44:24 +0200
commit3cc6de8c6393e056961d8bc11612f54d3138c1f0 (patch)
tree120c5e8ab544e54f12b7f327766b746496dd6a74 /images
parent33c2361ab6f0d7bfc802d2fc10d2f29aef44867b (diff)
downloadserver-3cc6de8c6393e056961d8bc11612f54d3138c1f0.tar.gz
server-3cc6de8c6393e056961d8bc11612f54d3138c1f0.tar.xz
server-3cc6de8c6393e056961d8bc11612f54d3138c1f0.zip
Move service images
Diffstat (limited to 'images')
-rw-r--r--images/backup/backup.yml21
-rw-r--r--images/backup/restore.yml16
2 files changed, 0 insertions, 37 deletions
diff --git a/images/backup/backup.yml b/images/backup/backup.yml
deleted file mode 100644
index c182b8d..0000000
--- a/images/backup/backup.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-version: '3'
-
-services:
- backup:
- env_file:
- - config.env
- build: ./duplicity
- command: /bin/sh /backup.sh
- hostname: duplicity
- restart: "no"
- volumes:
- - cache:/cache
- - ./gpg_keys:/gpg_keys:ro
-
- - git_data:/data/git
-
-volumes:
- cache:
-
- # server_git_data:
- #external: true
diff --git a/images/backup/restore.yml b/images/backup/restore.yml
deleted file mode 100644
index 6640b26..0000000
--- a/images/backup/restore.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-version: '3'
-
-services:
- backup:
- env_file:
- - config.env
- build: ./duplicity
- command: /bin/sh /restore.sh
- hostname: duplicity
- restart: "no"
- volumes:
- - ./restored:/data
- - ./gpg_keys:/gpg_keys
-
-volumes:
- cache: