6 lines
137 B
Bash
Executable File
6 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
docker build . --network host -t jeancloud/backup-to-nextcloud
|
|
docker push jeancloud/backup-to-nextcloud
|