Created
January 15, 2018 13:04
-
-
Save david-batranu/d4423c5e791448147d46d099e5c5a88f to your computer and use it in GitHub Desktop.
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
| nginx: | |
| image: nginx:1.13-alpine | |
| environment: | |
| TZ: "Europe/Bucharest" | |
| NGINX_CONF: |- | |
| server { | |
| listen 80; | |
| location / { | |
| proxy_pass http://remote; | |
| } | |
| } | |
| command: /bin/sh -c 'echo "$$NGINX_CONF" > /etc/nginx/conf.d/default.conf && exec nginx -g "daemon off;"' | |
| restart: "always" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment