Skip to content
Snippets Groups Projects
Dockerfile 627 B
Newer Older
  • Learn to ignore specific revisions
  • FORESTIER Fabien's avatar
    FORESTIER Fabien committed
    FROM openresty/openresty:1.13.6.2-2-stretch
    
    COPY nginx.conf /usr/local/openresty/nginx/conf/nginx.conf
    COPY nginx.vh.default.template.conf /tmp/nginx.vh.default.template.conf
    
    CMD envsubst '\$ANONYMOUS_USER \
                      \$GHOST_EDITORS_GROUPNAME \
                      \$PUBLISHED_POSTS_ALIAS \
                      \$PUBLISHED_PAGES_ALIAS \
                      \$DRAFT_POSTS_ALIAS \
                      \$DRAFT_PAGES_ALIAS \
                      \$ES_ALIAS_SUFFIX \
                      \$ES_UPSTREAM_SERVER' < /tmp/nginx.vh.default.template.conf > /etc/nginx/conf.d/default.conf && /usr/local/openresty/bin/openresty -g "daemon off;"