9 lines
204 B
Docker
9 lines
204 B
Docker
|
from debian
|
||
|
volume ./git /Projects
|
||
|
volume ./scripts /Scripts
|
||
|
volume ./files /Files
|
||
|
volume ../docker/Nginx/tmp /Nginx
|
||
|
copy install.sh /install.sh
|
||
|
run chmod +x /install.sh
|
||
|
run /install.sh
|
||
|
run rm /install.sh
|