Skip to content

Instantly share code, notes, and snippets.

@david-batranu
Created January 15, 2018 13:04
Show Gist options
  • Select an option

  • Save david-batranu/d4423c5e791448147d46d099e5c5a88f to your computer and use it in GitHub Desktop.

Select an option

Save david-batranu/d4423c5e791448147d46d099e5c5a88f to your computer and use it in GitHub Desktop.
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