Merge branch 'master' into 4

This commit is contained in:
Adrien Ferrand 2017-09-02 20:57:42 +02:00
commit 89d1cb9275
2 changed files with 10 additions and 10 deletions

View File

@ -1,8 +1,8 @@
# adferrand/backuppc
![](https://img.shields.io/badge/tags-4%20latest-lightgrey.svg) [![](https://images.microbadger.com/badges/version/adferrand/backuppc:4.1.3-7.svg) ![](https://images.microbadger.com/badges/image/adferrand/backuppc:4.1.3-7.svg)](https://microbadger.com/images/adferrand/backuppc:4.1.3-7)
* [Introduction](#introduction)
* [Container functionalities](#container-functionalities)
* [About BackupPC](#about-backuppc)
* [Basic usage](#basic-usage)
* [Data persistency](#data-persistency)
* [POSIX rights](#posix-rights)
@ -21,13 +21,6 @@
* [Shell access](#shell-access)
* [Legacy version](#legacy-version)
## Introduction
![BackupPC Logo](https://backuppc.github.io/backuppc/images/logos/logo320.png)
BackupPC is a free self-hosted backup software able to backup remote hosts through various ways like rsync, smb or tar. It supports full and incremental backups, and reconstruct automatically a usable verbatim from any backup version. Started with version 4, BackupPC uses a new way to store backups by a reverse delta approach and no hardlinks.
See [BackupPC documentation](http://backuppc.sourceforge.net/BackupPC-4.1.1.html) for further details and how to use it.
## Container functionalities
This docker is designed to provide a ready-to-go and maintainable BackupPC instance for your backups.
@ -37,6 +30,13 @@ This docker is designed to provide a ready-to-go and maintainable BackupPC insta
* Existing BackupPC configuration & pool are self-upgraded at first run of a newly created container instance. It allows for instance dockerisation of a pre-existing BackupPC v3.x instance.
* Container image is constructed on top of an Alpine distribution to reduce the footprint. Image size is below 80MB.
## About BackupPC
![BackupPC Logo](https://backuppc.github.io/backuppc/images/logos/logo320.png)
BackupPC is a free self-hosted backup software able to backup remote hosts through various ways like rsync, smb or tar. It supports full and incremental backups, and reconstruct automatically a usable verbatim from any backup version. Started with version 4, BackupPC uses a new way to store backups by a reverse delta approach and no hardlinks.
See [BackupPC documentation](http://backuppc.sourceforge.net/BackupPC-4.1.1.html) for further details and how to use it.
## Basic usage
For testing purpose, you can create a new BackupPC instance with following command.
@ -239,7 +239,7 @@ docker run \
adferrand/backuppc
```
Alternatively, you can sync the container timezone to its host by mounting the host file `/etc/localtime` to the container path `/etc/localtime`.
Alternatively, depending on the host OS, you can sync the container timezone to its host by mounting the host file `/etc/localtime` to the container path `/etc/localtime`.
```bash
docker run \

View File

@ -6,7 +6,7 @@ if [ -f /firstrun ]; then
echo 'If exist, configuration and data will be reused and upgraded as needed.'
# Configure timezone if needed
if [ -z "$TZ" ]; then
if [ -n "$TZ" ]; then
cp /usr/share/zoneinfo/$TZ /etc/localtime
fi