8000 stacksmith: Add t/Dockerfile · Pull Request #1 · spaceback/3proxy · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

stacksmith: Add t/Dockerfile #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions t/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## BUILDING
## (from project root directory)
## $ docker build -t nginx-for-spaceback-3proxy .
##
## RUNNING
## $ docker run -p 80:80 nginx-for-spaceback-3proxy
##
## CONNECTING
## Lookup the IP of your active docker host using:
## $ docker-machine ip $(docker-machine active)
## Connect to the container at DOCKER_IP:80
## replacing DOCKER_IP for the IP of your active docker host
##
## NOTES
## This is a prebuilt version of nginx.
## For more information and documentation visit:
## https://github.com/bitnami/bitnami-docker-nginx

FROM gcr.io/bitnami-containers/nginx:1.10.2-r3

ENV STACKSMITH_STACK_ID="masprnz" \
STACKSMITH_STACK_NAME="nginx for spaceback/3proxy" \
STACKSMITH_STACK_PRIVATE="1" \
BITNAMI_CONTAINER_ORIGIN="stacksmith"

## STACKSMITH-END: Modifications below this line will be unchanged when regenerating
0