Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
centos8_backups
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
linuxsupport
cronjobs
centos8_backups
Merge requests
!1
LOS-476: Implement C8 backups to S3 via restic
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
LOS-476: Implement C8 backups to S3 via restic
dev
into
master
Overview
8
Commits
27
Pipelines
5
Changes
12
All threads resolved!
Show all comments
Merged
Ben Morrice
requested to merge
dev
into
master
5 years ago
Overview
8
Commits
27
Pipelines
5
Changes
12
All threads resolved!
Show all comments
Expand
0
0
Merge request reports
Compare
master
version 4
92814a2d
5 years ago
version 3
0d985cb5
5 years ago
version 2
64f2c933
5 years ago
version 1
e637b736
5 years ago
master (base)
and
latest version
latest version
2b6daa76
27 commits,
5 years ago
version 4
92814a2d
26 commits,
5 years ago
version 3
0d985cb5
25 commits,
5 years ago
version 2
64f2c933
24 commits,
5 years ago
version 1
e637b736
23 commits,
5 years ago
12 files
+
260
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
centos8_backups/Dockerfile
0 → 100644
+
11
−
0
Options
FROM
gitlab-registry.cern.ch/linuxsupport/cc7-base:latest
RUN
yum-config-manager
--add-repo
https://copr.fedorainfracloud.org/coprs/copart/restic/repo/epel-7/copart-restic-epel-7.repo
RUN
yum
install
-y
restic ssmtp gettext fuse
COPY
ssmtp.conf /etc/ssmtp/ssmtp.conf
COPY
*.sh *.tpl /root/
WORKDIR
/root
ENTRYPOINT
["/root/backup.sh"]
Loading