Docker环境变量

  1. env_file,environment中定义的环境变量是传给container用的,不是在docker-compose.yml中的环境变量用的
  2. docker-compose.yml中的环境变量${VARIABLE:-default}引用的是在.env中定义的或者同个shell export出来的
  3. docker-compose中替换.env文件变量的研究,.env文件的环境变量:
    1. 只能用大写
    2. 不能出现".“号
    3. 可以用”_"
    4. 只能用在up -d

后记:不用太过研究,限制多,且应用得少

[阅读全文]

linux环境变量设置区别

linux环境变量设置区别

/etc/profile 和 /etc/profile.d/

  1. 两个文件都是设置环境变量文件的,/etc/profile是永久性的环境变量,是全局变量,/etc/profile.d/设置所有用户生效
  2. /etc/profile.d/比/etc/profile好维护,不想要什么变量直接删除/etc/profile.d/下对应的shell脚本即可,不用像/etc/profile需要改动此文件