Sign inSign up

laynefyc/arm_nginx

By laynefyc

Updated about 10 years ago

A arm nginx base on Hypriot.

Artifact
Image
0

310

laynefyc/arm_nginx repository overview

arm-nginx

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

  1. download path file

    git clone [email protected]:laynefyc/arm-nginx.git
    
  2. start nginx

    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

	FROM resin/rpi-raspbian:latest
	MAINTAINER Layne Fyc <[email protected]>

	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;"]
     ````

Tag summary

Content type

Image

Digest

Size

50.3 MB

Last updated

about 10 years ago

docker pull laynefyc/arm_nginx