blob: 6bd8d7197ec165e14601ff797c2a985f20ba9d65 (
plain)
1
2
3
4
5
6
7
|
build-image:
docker build . -t musicgame --platform linux/aarch64
push-image:
docker save musicgame | bzip2 | ssh mhtwtf docker load
ssh mhtwtf "docker run --entrypoint '/app/server' -p 4001:4800 -dt musicgame"
|