Formatting

This commit is contained in:
b3vis 2016-08-15 09:52:40 +01:00
parent 1addc62b58
commit fccb0a4aeb
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
## Borg Backup Server Container # Borg Backup Server Container
![alt text](https://borgbackup.readthedocs.io/en/stable/_static/logo.png "Borgbackup") ![alt text](https://borgbackup.readthedocs.io/en/stable/_static/logo.png "Borgbackup")
### Description ### Description
@ -31,9 +31,8 @@ CMD ["/usr/bin/supervisord"]
I personally like to split my ssh keys out of the main container to make updates and management easier. To achieve this I create a persistent storage container; I personally like to split my ssh keys out of the main container to make updates and management easier. To achieve this I create a persistent storage container;
`docker run -d -v /home/borg/.ssh --name borg-keys-storage busybox:latest` `docker run -d -v /home/borg/.ssh --name borg-keys-storage busybox:latest`
---
* Container Creation: * Container Creation:
``` ```
docker create \ docker create \
--name=borg-server \ --name=borg-server \
@ -43,7 +42,8 @@ docker create \
-p 2022:22 \ -p 2022:22 \
b3vis/borg-server b3vis/borg-server
``` ```
* Note ---
### Note
After creating the container you will need to start the container add your own public keys After creating the container you will need to start the container add your own public keys
--- ---