services: pbs-client: image: aterfax/pbs-client:latest # Adjust the container name and hostname to change the naming within the PBS server # backups, e.g. this would set ``host/pbs-client``. container_name: pbs-client hostname: pbs-client restart: unless-stopped env_file: - .env tmpfs: - /run:exec volumes: - type: tmpfs target: /tmp tmpfs: size: 1073741824 - ./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 # If you want to provide bash hooks, you can mount volumes as below. See the .env.example # for more information. #- ./hooks/pre.d:/hooks/pre.d:ro #- ./hooks/post.d:/hooks/post.d:ro