Created
January 26, 2021 11:25
-
-
Save carlessanagustin/ff04aeeeb018ca7ef6c933eb2fa3bf64 to your computer and use it in GitHub Desktop.
Simple Nginx via Docker Compose file
This file contains hidden or 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' | |
services: | |
webserver: | |
image: nginx:latest | |
command: [nginx-debug, '-g', 'daemon off;'] | |
ports: | |
- "8080:80/tcp" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment