Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/laynefyc/arm-nginx

arm nginx
https://github.com/laynefyc/arm-nginx

Last synced: 10 days ago
JSON representation

arm nginx

Awesome Lists containing this project

README

        

## arm-nginx
This is my first arm images. I create it base on Hypriot.

1. download path file

````bash
git clone [email protected]:laynefyc/arm-nginx.git
````

2. start nginx

````bash
cd arm-nginx

docker run -d -it -p 80:80 \
-v `pwd`/www:/www \
-v `pwd`/config:/etc/nginx/sites-enabled \
-v `pwd`/logs:/var/log/nginx \
laynefyc/arm_nginx
````

## Source url
* git url: [arm-nginx](https://github.com/laynefyc/arm-nginx/)

* Dockerfile source: [arm-nginx](https://github.com/laynefyc/arm-nginx/blob/master/Dockerfile)

* Dockerfile code

````docker
FROM resin/rpi-raspbian:latest
MAINTAINER Layne Fyc

RUN apt-get update \
&& apt-get install -y nginx \
&& apt-get -y clean

RUN ln -sf /dev/stdout /var/log/nginx/access.log \
&& ln -sf /dev/stderr /var/log/nginx/error.log

EXPOSE 80 443

CMD ["nginx", "-g", "daemon off;"]