forked from danday74/docker-nginx-lua
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change readme, fix nginx proxy websocket configuration
- Loading branch information
Showing
4 changed files
with
57 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,11 @@ | |
# To build: | ||
# | ||
# 1) Install docker (http://docker.io) | ||
# 2) Clone Nginx-Hipache repo if you haven't already: git clone | ||
# 3) Build: cd ...... && docker build . | ||
# 2) Clone nginx-lua-proxy repo if you haven't already: | ||
git clone https://github.com/Ermlab/nginx-lua-proxy.git | ||
# 3) Build: cd nginx-lua-proxy && docker build . | ||
# 4) Run: docker run -d --name redis redis | ||
# 5) Run: docker run -d --link redis:redis -P <hipache_image_id> | ||
# 5) Run: docker run -d --link redis:redis -P nginx-lua-proxy | ||
|
||
FROM ubuntu:14.04 | ||
MAINTAINER Krzysztof Sopyła <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
IMAGE=ermlab/nginx-lua | ||
IMAGE=ermlab/nginx-lua-proxy | ||
TAG='latest' | ||
CONTAINER_NAME=proxy-nginx-lua | ||
|
||
|