aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..c37d501
--- /dev/null
+++ b/README.md
@@ -0,0 +1,40 @@
1# nginx-proxy-google
2
3Inspired by [ngx_http_google_filter_module](https://github.com/cuber/ngx_http_google_filter_module)
4
5## Base Docker Image
6
7* [ubuntu](https://hub.docker.com/_/ubuntu/)
8
9## Usage
10
11You can either pull [automated build](https://hub.docker.com/r/clarkzjw/nginx-proxy-google/) from Docker Hub or build the image by yourself.
12
13### Pull from Docker Hub
14
15```bash
16docker pull clarkzjw/nginx-proxy-google
17```
18
19### Build the image by yourself
20
21+ Install [Docker](https://docs.docker.com/engine/installation/#installation).
22
23+ Clone this repo
24
25```bash
26git clone https://github.com/clarkzjw/nginx-proxy-google
27```
28
29+ Build an image from Dockerfile
30
31```bash
32docker build -t="nginx-proxy-google" .
33```
34
35## Run
36
37```bash
38docker run -d -p <host-ip-port>:80 nginx-proxy-google
39```
40
Powered by cgit v1.2.3 (git 2.41.0)