mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 03:42:31 +00:00
commit
d1bd160b0a
7
docker/Dockerfile
Normal file
7
docker/Dockerfile
Normal file
@ -0,0 +1,7 @@
|
||||
FROM alpine:3.6
|
||||
|
||||
COPY restic /usr/bin
|
||||
|
||||
RUN apk add --update --no-cache ca-certificates fuse
|
||||
|
||||
ENTRYPOINT ["/usr/bin/restic"]
|
24
docker/README.md
Normal file
24
docker/README.md
Normal file
@ -0,0 +1,24 @@
|
||||
# Docker image
|
||||
|
||||
## Build
|
||||
|
||||
From the root of this repository run:
|
||||
|
||||
```
|
||||
./docker/build.sh
|
||||
```
|
||||
|
||||
image name will be `restic/restic:latest`
|
||||
|
||||
## Run
|
||||
|
||||
Set environment variable `RESTIC_REPOSITORY` and map volume to directories and
|
||||
files like:
|
||||
|
||||
```
|
||||
docker run --rm -ti \
|
||||
-v $HOME/.restic/passfile:/pass \
|
||||
-v $HOME/importantdirectory:/data \
|
||||
-e RESTIC_REPOSITORY=rest:https://user:pass@hostname/ \
|
||||
restic/restic -p /pass backup /data
|
||||
```
|
11
docker/build.sh
Executable file
11
docker/build.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
echo "Build binary using golang docker image"
|
||||
docker run --rm -ti \
|
||||
-v `pwd`:/go/src/github.com/restic/restic \
|
||||
-w /go/src/github.com/restic/restic golang:1.8.3-alpine go run build.go
|
||||
|
||||
echo "Build docker image restic/restic:latest"
|
||||
docker build --rm -t restic/restic:latest -f docker/Dockerfile .
|
Loading…
Reference in New Issue
Block a user