mirror of
https://github.com/edv-pi/pbs-client-docker.git
synced 2025-04-15 07:42:55 +02:00
19 lines
566 B
YAML
19 lines
566 B
YAML
services:
|
|
pbs-client:
|
|
image: tmueller/pbs-client
|
|
container_name: pbs-client
|
|
hostname: pbs-client
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
tmpfs:
|
|
- /tmp
|
|
- /run:exec
|
|
volumes:
|
|
- ./pbsconfig/:/root/.config/proxmox-backup/
|
|
# Note - if you want to restore backups make sure to change to read write below.
|
|
# See the 'restore-backup' command inside the container.
|
|
- ./backups/test1:/backups/test1:ro
|
|
- ./backups/test2:/backups/test2:ro
|
|
- ./backups/test3:/backups/test3:ro
|