mirror of
http://124.126.16.154:8888/singularity/composer-template.git
synced 2026-01-15 00:35:08 +08:00
12 lines
262 B
Batchfile
Executable File
12 lines
262 B
Batchfile
Executable File
@echo off
|
|
|
|
for /F %%i in ('chdir') do ( set current_dir=%%i)
|
|
|
|
docker run ^
|
|
-ti --rm --name "composer-template" ^
|
|
-v "%current_dir%":"/srv/www" ^
|
|
-v "%USERPROFILE%\.ssh":"/root/.ssh" ^
|
|
-p 8866:80 ^
|
|
--env-file=.env ^
|
|
php:cli-alpine /bin/ash
|