Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zzdjk6/silverstripe-4-nginx-docker
A docker image for SilverStripe 4, serve with Nginx and php-fpm 7.2 on Ubuntu 18.04
https://github.com/zzdjk6/silverstripe-4-nginx-docker
docker nginx silverstripe ubuntu
Last synced: 8 days ago
JSON representation
A docker image for SilverStripe 4, serve with Nginx and php-fpm 7.2 on Ubuntu 18.04
- Host: GitHub
- URL: https://github.com/zzdjk6/silverstripe-4-nginx-docker
- Owner: zzdjk6
- Created: 2018-08-03T07:13:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-29T06:18:35.000Z (over 6 years ago)
- Last Synced: 2024-11-11T18:45:42.933Z (2 months ago)
- Topics: docker, nginx, silverstripe, ubuntu
- Language: Shell
- Homepage: https://store.docker.com/community/images/zzdjk6/silverstripe-4-nginx
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# How to build?
```bash
docker build -t silverstripe-4-nginx .
```# How to run?
```bash
docker run \
-it \
-p 80:80 \
-v "$PWD/project":/var/www/project:delegated \
--name silverstripe-nginx \
silverstripe-4-nginx
```# How to access the container?
```bash
docker exec -it silverstripe-nginx /bin/bash
```