Created
February 6, 2016 23:46
-
-
Save leandromoreira/f5126e759a785d905f69 to your computer and use it in GitHub Desktop.
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
# we'll build our container from an existent image :) | |
FROM nginx | |
# for some reason we need to create this folder | |
RUN mkdir -p /var/lib/nginx/proxy | |
# copy our app config to nginx | |
COPY sites-enabled/myapp.conf /etc/nginx/nginx.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment