mirror of
http://124.126.16.154:8888/singularity/hyperf-admin.git
synced 2026-01-15 07:15:06 +08:00
11 lines
255 B
Bash
11 lines
255 B
Bash
|
|
#!/usr/bin/env sh
|
||
|
|
|
||
|
|
docker run \
|
||
|
|
--pull always \
|
||
|
|
-ti --rm --name "hdk-admin" \
|
||
|
|
-w "/srv/www" \
|
||
|
|
-v "$(pwd)":/srv/www \
|
||
|
|
-v ~/.ssh:/root/.ssh \
|
||
|
|
-v ~/.gitconfig:/root/.gitconfig \
|
||
|
|
harbor.luxcreo.cn/library/hyperf:7.4-swoole /bin/ash
|