作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有我的Dockerfile
:
# https://hub.docker.com/_/php/
FROM php:5.5.23-fpm
USER www-data
ADD .bash_profile /var/www/.bash_profile
SHELL ["/bin/bash", "-c"]
RUN source /var/www/.bash_profile
docker exec -it CONTAINER_NAME bash
我没有看到我的别名定义为
/var/www/.bash_profile
.但是如果我执行
source /var/www/.bash_profile
手动 – 一切正常。
最佳答案
有一个类似的问题,最简单的解决方案是使用 -l 选项 bash 使 bash 表现得好像它已作为登录 shell 被调用。
docker run --rm -it $IMAGE /bin/bash -l
关于docker - .bash_profile 不适用于 docker php 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43497510/
我是一名优秀的程序员,十分优秀!