Adds doc for HAproxy

This commit is contained in:
sudneo
2019-08-25 22:53:34 +03:00
parent f2f3d41649
commit b2e0e4efe3
6 changed files with 162 additions and 0 deletions

View File

@ -0,0 +1,12 @@
# Pull nginx base image
FROM nginx:latest
# Expost port 80
EXPOSE 80
# Copy custom configuration file from the current directory
COPY nginx.conf /etc/nginx/nginx.conf
# Start up nginx server
CMD ["nginx"]