ruby-on-rails - 在更新dockerfile之后重新创建容器

标签 ruby-on-rails docker docker-compose

我有一个dev.Dockerfiledocker-compose.yml文件。当我运行docker-compose up时,即使更新了dev.Dockerfile,它也会运行旧容器。如何更新容器?运行docker-compose up后是否有更新容器的方法?
这是我的dev.Dockerfile

FROM ruby:2.3.1
MAINTAINER Abraham Kuri <kurenn@icalialabs.com>

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

RUN set -ex \
  && curl -sL "https://deb.nodesource.com/setup_6.x" | bash - \
  && apt-get -y install nodejs \
  && npm install -g bower

RUN gem install bundler -v 1.11.2 --no-ri --no-rdoc

ENV PATH=/usr/src/app/bin:$PATH LANG=C.UTF-8

ADD Gemfile* /usr/src/app/

# Run dependencies install commands
RUN bundle

docker-compose.yml
version: '2'

volumes:
  postgres-data:
    driver: local
  redis-data:       # The redis data store volume
    driver: local
  gems:
    driver: local

services:
  redis:
    image: redis:3.0.7
    ports:
      # We'll bind our host's port 6379 to redis's port 6379, so we can use
      # any explorer to read the database:
      - 6379:6379
    volumes:
      # We'll store the redis data in the 'redis-data' volume we defined:
      - redis-data:/var/lib/redis
    command: redis-server --appendonly yes
  db:
    image: postgres:9.5.1
    ports:
      # We'll bind our host's port 5432 to postgres's port 5432, so we can use
      # our database IDEs with it:
      - 5432:5432
    volumes:
      # We'll store the postgres data in the 'postgres-data' volume we defined:
      - postgres-data:/var/lib/postgresql/data
    environment:
      POSTGRES_PASSWORD: P4Ssw0rD!

  # The job processor container - we'll use this as a base for the rest of the
  # containers:
  jobs: &app
    # Specify the directory from where all commands sent to the container will be
    # issued to where the code is mounted:
    image: catarse/catarse:development
    command: bundle exec sidekiq -c 1 -q default
    working_dir: /usr/src/app
    build:
      context: .
      dockerfile: dev.Dockerfile

    volumes:
      # Mount our app code directory (".") into our app containers at the
      # "/usr/src/app" folder:
      - .:/usr/src/app

      # Mount the 'gems' volume on the folder that stores bundled gems:
      - gems:/usr/local/bundle

    # Keep the stdin open, so we can attach to our app container's process
    # and do things such as byebug, etc:
    stdin_open: true

    # Enable sending signals (CTRL+C, CTRL+P + CTRL+Q) into the container:
    tty: true

    # Link to our postgres and redis containers, so they can be visible from our
    # app containers:
    depends_on:
      # We'll include a link to the 'db' (postgres) container, making it
      # visible from the container using the 'db' hostname:
      - db
      - redis

    # Specify environment variables available for our app containers. We'll leave
    # a YML anchor in case we need to override or add more variables if needed on
    # each app container:
    environment: &app_environment
      LANG: 'C.UTF-8'

      # We'll set the DATABASE_URL environment variable for the app to connect
      # to our postgres container - no need to use a 'config/database.yml' file.
      DATABASE_URL: postgres://postgres:P4Ssw0rD!@db:5432/docker_rails_dev?pool=25&encoding=unicode&schema_search_path=public,partitioning
      REDIS_URL: redis://redis:6379

      # We'll set the RAILS_ENV and RACK_ENV environment variables to
      # 'development', so our app containers will start in 'development' mode
      # on this compose project:
      RAILS_ENV: development
      RACK_ENV: development

    # We'll specify a dotenv file for docker-compose to load more environment
    # variables into our app containers. This dotenv file would normally contain
    # sensitive data (API keys & secrets, etc) which SHOULD NOT be committed into
    # Git.
    # Keep in mind that any changes in this file will require a container restart
    # in order to be available on the app containers:
    env_file:
      - dev.env
  web:
    <<: *app
    command: rails server -b 0.0.0.0 -p 3000 -P /tmp/rails2.pid
    ports:
      - 3000:3000
       # App Guard: Keeps running tests on a separate process:
  test:
    <<: *app # We copy from &app, and override:
    environment:
      <<: *app_environment
      # Override the app environment for this container:
      DATABASE_URL: postgres://postgres:P4Ssw0rD!@db:5432/docker_rails_test?pool=25&encoding=unicode&schema_search_path=public,partitioning
      RACK_ENV: test
      RAILS_ENV: test
      SECRET_KEY_BASE_TEST: "600bac98dabba98b903ce4c4d25e48f34920e09f43d3ff61a1005e0f500d5a0e38e25f70ef78e0a8b5475d4ff21cc553e7c07f6565f1c8773165350345fbbc56"

最佳答案

运行docker-compose build以强制重新构建容器(用于撰写文件)。 https://docs.docker.com/compose/reference/build/

您还可以使用docker-compose down解构组合的设置:https://docs.docker.com/compose/reference/down/-然后再次使用docker-compose up

也可以手动删除容器和图像,然后再次运行docker-compose up

关于ruby-on-rails - 在更新dockerfile之后重新创建容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41401037/

相关文章:

ruby-on-rails - 我应该使用 RSpec 还是 Cucumber

Docker Swarm 初始化失败 : Address already in use

ruby-on-rails - 其中哪一个是与 "latest rails"应用程序一起使用的更好选择? Mongrel、Thin、WEBrick 和Passenger

ruby-on-rails - 如何在 attr_encrypted 数据库字段上添加索引?

docker - 如何使用CondaDependencies更改Azure Machine Learning sdk ContainerImage中的Python版本

ruby-on-rails - 添加除 Dockerfile 之外的项目文件夹

docker - Kubernetes无法从其他节点删除Docker镜像

docker - 在带有docker-compose和x.pack auth的Docker中使用Docker中的ELK Stack无法验证用户

php - Docker phpmyadmin忽略了我的php.ini配置

javascript - 如何重新加载插入 javascript 的 ruby​​ - turbolinks