Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Robin Thoni 50d8f492dd README 7 gadus atpakaļ
.gitignore init 8 gadus atpakaļ
Dockerfile init 8 gadus atpakaļ
README.md README 7 gadus atpakaļ
docker-php-ext-configure init 8 gadus atpakaļ
docker-php-ext-enable init 8 gadus atpakaļ
docker-php-ext-install init 8 gadus atpakaļ
php-cli.ini init 8 gadus atpakaļ

README.md

Docker for php 7.0 with ssh

Why?

This docker file allows you to run php 7.0 scripts on any server configuration. This is useful if you have to run tests or composer commands that require php 7.0. See docker help for more information.

Usage

Build the image:

git clone https://git.rthoni.com/robin.thoni/docker-php7.0-ssh
cd docker-php7.0-ssh
docker build -t php7.0-ssh .

Run a container:

docker run -d -v /path/to/my/php/application/:/data/ -p 2200:22 --name=container-my-php-application-ssh php7.0-ssh

Connect to the container:

ssh root@127.0.0.1 -o Port=2200 # password is 'toor' (without quotes)