admin-fe/docker/docker-entrypoint.sh
jp e813cbf7dd Update docker configuration:
- .dockerignore for building
- Dockerfile created usign node-10-alpine and nginx-mainline
- docker/ scripts and templates added
2020-01-24 11:32:49 -05:00

5 lines
134 B
Bash
Executable file

#!/bin/sh
set -e
envsubst "$(env | sed -e 's/=.*//' -e 's/^/\$/g')" < "/etc/nginx/nginx.conf.tpl" > "/etc/nginx/nginx.conf"
exec "$@"