为了账号安全,请及时绑定邮箱和手机立即绑定

Docker-compose 不会让基础容器保持运行

Docker-compose 不会让基础容器保持运行

PHP
繁华开满天机 2023-08-11 18:03:01
我有一个 Dockerfile,它构建 Debian 映像并安装 Apache、Php、MySql。一般来说,如果我运行 docker 命令:docker build --tag my-project-image:2.0 .进而docker run -dit --name my-project-container \     --mount type=bind,source=$(pwd),destination=/var/www/html \    -p 80:80 --rm my-project-image:2.0我的容器保持运行,并且我开发所需的所有服务都已启动并运行,因此没有问题。我尝试将此配置移至 docker-compose 中,但遇到了奇怪的麻烦。我相信我犯了一个非常常见的错误,但我搜索了很多,尝试了很多东西,但无法使其发挥作用。简而言之,当我运行docker-compose up构建的映像时,它会创建一个容器,运行所有脚本,并且它会立即存在。问题是我想保持该容器运行,因为我在那里有 Apache 和 MySQL 等服务。我有两个服务,一个是用于 apache、MySQL 和 PHP 的lamp,另一个是用于运行 npm 脚本的Node 。不幸的是,节点容器保持正常运行,但灯立即关闭。这是我的 DockerfileFROM debian:latestENV DOC_ROOT=/var/www/htmlWORKDIR ${DOC_ROOT}RUN apt-get updateRUN apt-get --assume-yes upgradeRUN apt-get --assume-yes install apache2RUN apt-get --assume-yes install curl php-curlRUN apt-get --assume-yes install phpRUN apt-get --assume-yes install php-mysqlRUN apt-get --assume-yes install composerRUN apt-get --assume-yes install php-xdebugRUN apt-get --assume-yes install default-mysql-serverRUN a2enmod rewriteCOPY ./ ${DOC_ROOT}RUN echo "ServerName localhost" >> /etc/apache2/apache2.confCOPY config/000-default.conf /etc/apache2/sites-available/EXPOSE 80这是我的docker-compose.yaml文件内容version: "3.2"services:  lamp:    container_name: lamp-stack    build: .    ports:      - 80:80    volumes:    - .:/var/www/html    command: >      /bin/sh -c "service apache2 start && \        service mysql start && \        mysql < migrations/migrations.sql && \        mysql < migrations/development.sql && \        bash"  node:    container_name: node-builder    image: node:12-alpine3.9    depends_on:      - lamp    working_dir: /var/www/html    volumes:    - .:/var/www/html    command: >      /bin/ash -c "npm run build:dev > ./.logs/npm/npm-build.log && \        npm run watch:sass > ./.logs/npm/sass-watch.log"
查看完整描述

1 回答

?
慕桂英4014372

TA贡献1871条经验 获得超13个赞

尝试在 docker-compose 中添加这些行:


stdin_open: true # equivalent of -i

tty: true        # equivalent of -t


查看完整回答
反对 回复 2023-08-11
  • 1 回答
  • 0 关注
  • 116 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信