mirror of
https://github.com/octoleo/restic.git
synced 2024-11-24 21:57:41 +00:00
Merge pull request #4383 from LouisMT/add-docker-hostname
Add hostname flag to Docker docs
This commit is contained in:
commit
f96896a9c0
@ -265,6 +265,10 @@ binary, you can get it with `docker pull` like this:
|
|||||||
|
|
||||||
$ docker pull restic/restic
|
$ docker pull restic/restic
|
||||||
|
|
||||||
|
Restic relies on the hostname for various operations. Make sure to set a static
|
||||||
|
hostname using `--hostname` when creating a Docker container, otherwise Docker
|
||||||
|
will assign a random hostname each time.
|
||||||
|
|
||||||
From Source
|
From Source
|
||||||
***********
|
***********
|
||||||
|
|
||||||
|
@ -16,9 +16,13 @@ Set environment variable `RESTIC_REPOSITORY` and map volume to directories and
|
|||||||
files like:
|
files like:
|
||||||
|
|
||||||
```
|
```
|
||||||
docker run --rm -ti \
|
docker run --rm --hostname my-host -ti \
|
||||||
-v $HOME/.restic/passfile:/pass \
|
-v $HOME/.restic/passfile:/pass \
|
||||||
-v $HOME/importantdirectory:/data \
|
-v $HOME/importantdirectory:/data \
|
||||||
-e RESTIC_REPOSITORY=rest:https://user:pass@hostname/ \
|
-e RESTIC_REPOSITORY=rest:https://user:pass@hostname/ \
|
||||||
restic/restic -p /pass backup /data
|
restic/restic -p /pass backup /data
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Restic relies on the hostname for various operations. Make sure to set a static
|
||||||
|
hostname using `--hostname` when creating a Docker container, otherwise Docker
|
||||||
|
will assign a random hostname each time.
|
||||||
|
Loading…
Reference in New Issue
Block a user