खोज…


परिचय

यह ट्यूटोरियल डॉकर इंस्टॉल और रेल एप्लिकेशन के साथ शुरू होगा

डॉकटर और डॉकटर-रचना

सबसे पहले, हमें अपना Dockerfile बनाने की आवश्यकता होगी। इस ब्लॉग पर एक अच्छा उदाहरण निक जेनेटकिस द्वारा पाया जा सकता है।

इस कोड में वह स्क्रिप्ट शामिल है जिसे हमारे docker मशीन पर शुरू होने के समय निष्पादित किया जाएगा। इस कारण से, हम सभी आवश्यक लाइब्रेरी स्थापित कर रहे हैं और Puma (RoR dev सर्वर) की शुरुआत के साथ समाप्त होते हैं

# Use the barebones version of Ruby 2.3.
FROM ruby:2.3.0-slim

# Optionally set a maintainer name to let people know who made this image.
MAINTAINER Nick Janetakis <[email protected]>

# Install dependencies:
# - build-essential: To ensure certain gems can be compiled
# - nodejs: Compile assets
# - libpq-dev: Communicate with postgres through the postgres gem
RUN apt-get update && apt-get install -qq -y --no-install-recommends \
      build-essential nodejs libpq-dev git


# Set an environment variable to store where the app is installed to inside
# of the Docker image. The name matches the project name out of convention only.
ENV INSTALL_PATH /mh-backend
RUN mkdir -p $INSTALL_PATH

# This sets the context of where commands will be running in and is documented
# on Docker's website extensively.
WORKDIR $INSTALL_PATH

# We want binstubs to be available so we can directly call sidekiq and
# potentially other binaries as command overrides without depending on
# bundle exec.
COPY Gemfile* $INSTALL_PATH/

ENV BUNDLE_GEMFILE $INSTALL_PATH/Gemfile
ENV BUNDLE_JOBS 2 
ENV BUNDLE_PATH /gembox

RUN bundle install

# Copy in the application code from your work station at the current directory
# over to the working directory.
COPY . .

# Ensure the static assets are exposed to a volume so that nginx can read
# in these values later.
VOLUME ["$INSTALL_PATH/public"]

ENV RAILS_LOG_TO_STDOUT true


# The default command that gets run will be to start the Puma server.
CMD bundle exec puma -C config/puma.rb

इसके अलावा, हम docker-compose.yml उपयोग करेंगे, इसके लिए हम docker-compose.yml । इस फ़ाइल की व्याख्या रेल्स के साथ एकीकरण की तुलना में अधिक डॉक-कंपोज़ ट्यूटोरियल होगी और मैं यहां कवर नहीं करूंगा।

version: '2'

services:
  backend:
    links:
      - #whatever you need to link like db
    build: .
    command: ./scripts/start.sh
    ports:
      - '3000:3000'
    volumes:
      - .:/backend
    volumes_from:
      - gembox
    env_file:
      - .dev-docker.env
    stdin_open: true
    tty: true

बस इन दो फाइलों के साथ आपके पास docker-compose up को चलाने और अपने डॉक को जगाने के लिए पर्याप्त होगा



Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow