Update README.md
This commit is contained in:
parent
502509b711
commit
e8a3c4a51e
31
README.md
31
README.md
|
|
@ -1,2 +1,29 @@
|
|||
# proxmoxbackupserver
|
||||
Proxmox Backup Server - Docker Image
|
||||
|
||||
# ProxmoxBackupDocker
|
||||
|
||||
Docker container for running proxmox backup server in docker,
|
||||
Ref:[https://pbs.proxmox.com/](https://pbs.proxmox.com/)
|
||||
|
||||
Docker Hub link: https://hub.docker.com/repository/docker/einar/proxmoxbackup
|
||||
This image is by no means ready for production, but if you want to take PBS for a quick test spin, then this is for you.
|
||||
|
||||
Current limitations:
|
||||
|
||||
- Only storage that is mapped with dicrectory will work.
|
||||
|
||||
|
||||
# docker-compose.yml
|
||||
version: '3'
|
||||
services:
|
||||
proxmox-backup-server:
|
||||
build:
|
||||
context: https://github.com/joBr99/proxmoxbackupserver.git
|
||||
dockerfile: Dockerfile
|
||||
container_name: proxmox-backup-server
|
||||
hostname: proxmox-backup-server
|
||||
ports:
|
||||
- 8007:8007
|
||||
volumes:
|
||||
- /etc/shadow:/etc/shadow:ro #Mounts your hosts password file as read-only, your host root password can be used to sign in
|
||||
- ./data/etc-proxmox-backup:/etc/proxmox-backup
|
||||
- ./data/var-lib-proxmox-backup:/var/lib/proxmox-backup
|
||||
|
|
|
|||
Loading…
Reference in New Issue