Skip to content

Commit

Permalink
SYS-471 iterating on pipeline fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
instantlinux committed Oct 18, 2020
1 parent b5da193 commit cd9fec1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# PYPI_PASSWORD, PYPI_USER, REGISTRY_URI

variables:
PLATFORMS: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
PLATFORMS: linux/amd64,linux/arm/v6,linux/arm/v7

stages:
- Analyze and Unit Test
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ARG RRSYNC_SHA=f7b931e73e811f76e0ad8466e654e374ee18025b837ec69abed805ff34e0f1ef
VOLUME /backups /metadata /etc/secondshot/conf.d

COPY requirements.txt /tmp/
RUN apk add --no-cache --update rsnapshot=$RSNAPSHOT_VERSION curl dcron make \
RUN apk add --no-cache --update rsnapshot=$RSNAPSHOT_VERSION dcron make \
patch py3-cryptography py3-six py3-urllib3 shadow tzdata && \
pip install -r /tmp/requirements.txt && \
adduser -s /bin/sh -S -D -G adm secondshot && \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dist/secondshot-$(VERSION).tar.gz:

bin/rrsync:
@echo "Downloading rrsync"
curl -sLo $@ $(RRSYNC_URL)
wget -q -O $@ $(RRSYNC_URL)
chmod +x $@

clean:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## secondshot

[![](https://img.shields.io/docker/v/instantlinux/secondshot?sort=date)]((https://microbadger.com/images/instantlinux/secondshot "Version badge") [![](https://images.microbadger.com/badges/image/instantlinux/secondshot.svg)](https://microbadger.com/images/instantlinux/secondshot "Image badge") ![](https://img.shields.io/badge/platform-amd64%20arm64%20arm%2Fv6%20arm%2Fv7-blue "Platform badge") [![](https://img.shields.io/badge/dockerfile-latest-blue)](https://gitlab.com/instantlinux/docker-tools/-/blob/master/images/secondshot/Dockerfile "dockerfile")
[![](https://img.shields.io/docker/v/instantlinux/secondshot?sort=date)]((https://microbadger.com/images/instantlinux/secondshot "Version badge") [![](https://images.microbadger.com/badges/image/instantlinux/secondshot.svg)](https://microbadger.com/images/instantlinux/secondshot "Image badge") ![](https://img.shields.io/badge/platform-amd64%20arm%2Fv6%20arm%2Fv7-blue "Platform badge") [![](https://img.shields.io/badge/dockerfile-latest-blue)](https://gitlab.com/instantlinux/docker-tools/-/blob/master/images/secondshot/Dockerfile "dockerfile")


This is a command-line tool and library for managing filesystem backups on a local network. Each incremental backup is made available according to rotation rules defined in [this 2004 article](http://www.mikerubel.org/computers/rsync_snapshots/) by Mike Rubel.
Expand Down

0 comments on commit cd9fec1

Please sign in to comment.