Created
July 30, 2017 09:25
-
-
Save debuggerboy/9e5d3d823974dd406ea7af4051c3eaee to your computer and use it in GitHub Desktop.
Local Nginx
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
version: "3.2" | |
services: | |
nginx: | |
container_name: local-dev-web | |
image: nginx:latest | |
networks : | |
- local-devnet | |
ports: | |
- "80:80" | |
networks: | |
local-devnet: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment