Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jorge07/docker-nginx-php7

Dockerized nginx and php7
https://github.com/jorge07/docker-nginx-php7

Last synced: about 2 months ago
JSON representation

Dockerized nginx and php7

Awesome Lists containing this project

README

        

Nginx-php7
===

Composer installed

### To share ssh keys

Command:

docker run -ti \
-v ./:/app \
-v ~/.ssh:/root/ssh \
-p 80:90 \
-p 443:443 \
leos/nginx-php7-composer

Using docker compose:

server:
image: leos/nginx-php7-composer
ports:
- "80:80"
- "443:443"
volumes:
- ./:/app
- ~/.ssh:/root/ssh