-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (20 loc) · 1.01 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
all: spotify-backup.docker.tar.zst
db:
sqlite3 data/backup-requests.db < schema.sql
unit-test:
cargo test -- --skip full_backup
target/release/spotify_backup: src/
cargo build --release
spotify-backup.docker.tar.zst: Dockerfile target/release/spotify_backup
docker build . -t simao/spotify-backup:latest
docker save simao/spotify-backup:latest | zstdmt > spotify-backup.docker.tar.zst
push: spotify-backup.docker.tar.zst
rsync -a --progress spotify-backup.docker.tar.zst docker-compose.yml [email protected]:spotify-backup/
e rsync -a --progress spotify-backup.example.toml [email protected]:spotify-backup/spotify-backup.toml
install: push
ssh [email protected] "zstdcat /home/sm-data/spotify-backup/spotify-backup.docker.tar.zst | docker image load"
docker-run: docker
docker run -it --publish 8000:8000 --volume $(pwd):/tmp/spotify-backup -e DATA_DIR=/tmp/spotify-backup -e RUST_LOG=info,spotify_backup=debug simao/spotify-backup:latest server
clean:
rm spotify-backup.docker.tar.zst
.PHONY: docker docker-run install push