Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jorge07/docker-nginx-php7
- Owner: jorge07
- Created: 2016-02-18T22:00:17.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-24T16:43:01.000Z (almost 9 years ago)
- Last Synced: 2023-02-26T22:11:01.834Z (almost 2 years ago)
- Language: Nginx
- Size: 29.3 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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