Docker Hub官方Nginx镜像配置问题
PHPz
PHPz 2017-04-24 09:14:02
0
2
1158

Docker Hub官方Nginx镜像文档
https://hub.docker.com/_/nginx/
跟着文档说明进行配置,有些问题不知道什么意思,
原文引用:

using environment variables in nginx configuration

Out-of-the-box, Nginx doesn't support using environment variables inside most configuration blocks. But envsubst may be used as a workaround if you need to generate your nginx configuration dynamically before nginx starts.

Here is an example using docker-compose.yml:

image: nginx
  volumes:
   - ./mysite.template:/etc/nginx/conf.d/mysite.template
  ports:
   - "8080:80"
  environment:
   - NGINX_HOST=foobar.com
   - NGINX_PORT=80
  command: 
        /bin/bash -c "envsubst < /etc/nginx/conf.d/mysite.template > /etc/nginx/conf.d/default.conf    
        &&    
        nginx -g 'daemon off;'"

The mysite.template file may then contain variable references like this :

listen ${NGINX_PORT};

问题:
在代码部分最后一行,也就是command:那一行,
1、envsubst作用是什么?
2、daemon off;作用是什么?
3、command:命令本身表示什么意思?什么时候执行后面的命令?

PHPz
PHPz

学习是最好的投资!

全員に返信(2)
小葫芦

envsubst はおそらく環境変数を操作するものだと思います。詳しくはコマンドの説明を参照してください

daemon off: これは nginx のパラメーターであり、
command は docker run nginx /bin/sh のイメージ名 nginx の後の /bin/sh の部分です。任意のコマンドを実行できます
1 つの投稿でそれを言わないでください

いいねを押す +0
PHPzhong

/bin/bash -c "envsubst < /etc/nginx/conf.d/mysite.template > /etc/nginx/conf.d/default.conf
設定ファイルを置き換えます
nginx -g 'daemon off; ' "正解は二階
コマンド: コンテナーの実行後に実行されるコマンドは、docker run ステートメント内のコマンドによってオーバーライドできます。

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!