mirror of
https://github.com/pooneyy/1Panel-Appstore.git
synced 2026-03-21 00:41:04 +08:00
11 lines
247 B
Bash
11 lines
247 B
Bash
#!/bin/bash
|
|
|
|
TEMP_CONTAINER_NAME="$(docker create ghcr.io/qaiu/netdisk-fast-download:main)"
|
|
if [ $? -ne 0 ]; then
|
|
echo "Failed to create container"
|
|
exit 1
|
|
fi
|
|
|
|
docker cp $TEMP_CONTAINER_NAME:/app/resources ./data
|
|
docker rm $TEMP_CONTAINER_NAME
|