Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```