Files
.github
collections
docs
examples
apache
caddy
caddy2
haproxy
Dockerfile
README.md
docker-compose.yml
haproxy.cfg
nginx.conf
hosts
vars.yml
group_vars
inventory
roles
.editorconfig
.gitignore
CHANGELOG.md
LICENSE
README.md
ansible.cfg
setup.yml
matrix-docker-ansible-deploy/examples/haproxy/Dockerfile
2019-08-25 22:53:34 +03:00

13 lines
209 B
Docker

# 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"]