mirror of
http://124.126.16.154:8888/singularity/hdk-auth.git
synced 2026-01-15 07:45:30 +08:00
10 lines
192 B
Bash
10 lines
192 B
Bash
|
|
#!/usr/bin/env sh
|
||
|
|
|
||
|
|
docker run \
|
||
|
|
-ti --rm --name "composer-template" \
|
||
|
|
-w "/srv/www" \
|
||
|
|
-v "$(pwd)":/srv/www \
|
||
|
|
-v ~/.ssh:/root/.ssh \
|
||
|
|
-p 8866:80 \
|
||
|
|
php:cli-alpine /bin/ash
|