Skip to content

Commit

Permalink
Merge pull request #25 from frekele/master
Browse files Browse the repository at this point in the history
merge master into stable
  • Loading branch information
frekele authored Aug 11, 2017
2 parents 1267d41 + bab9cef commit 9e69c4f
Show file tree
Hide file tree
Showing 12 changed files with 173 additions and 65 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/.idea/
/.idea/
6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:

before_install:
- sudo apt-get clean && sudo apt-get update -y
- sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine
- sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-ce
- docker --version
- git clone https://github.com/sstephenson/bats.git

Expand Down
12 changes: 7 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.3
FROM alpine:3.5

MAINTAINER frekele <[email protected]>

Expand All @@ -8,10 +8,10 @@ RUN apk add --update --no-cache \
wget \
git \
python\
py-pip \
py2-pip \
docker \
&& curl -sL https://get.docker.com/builds/Linux/x86_64/docker-1.10.3 > /usr/bin/docker \
&& chmod +x /usr/bin/docker \
#&& curl -sL https://get.docker.com/builds/Linux/x86_64/docker-1.12.6 > /usr/bin/docker \
#&& chmod +x /usr/bin/docker \
&& pip install --upgrade pip \
&& pip install awscli

Expand All @@ -22,17 +22,19 @@ RUN chmod -R +x /scripts
ENV STORAGE_PROVIDER='' \
BACKUP_NAME='' \
DATA_PATH='/data/' \
DATA_PATH_EXCLUDE='' \
GZIP_COMPRESSION='true' \
CLEAN_DATA_BEFORE_RESTORE='false' \
BACKUP_VERSION='' \
CRON_SCHEDULE='' \
AWS_ACCESS_KEY_ID='' \
AWS_SECRET_ACCESS_KEY='' \
AWS_S3_BUCKET_CREATE='false' \
AWS_S3_BUCKET_NAME='' \
AWS_S3_PATH='/' \
AWS_DEFAULT_REGION='us-east-1' \
AWS_S3_OPTIONS=''

ENTRYPOINT ["/scripts/run.sh"]

CMD [""]
CMD [""]
Loading

0 comments on commit 9e69c4f

Please sign in to comment.