Unable to introduce seed data into deployed rails app

Hi!
I am Japanese.
My English is poor, so I apologize if it is not clear.

This is a continuation of the question here.

I want to submit seed data, but it fails.
What are the possible causes?

hoge@MacBook-Air-2 sample_app % flyctl ssh console -C "/rails/bin/rails db:seed"
Connecting to fdaa:1:a422:a7b:d829:98af:d3b7:2... complete
rails aborted!
No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb)
/rails/vendor/bundle/ruby/3.1.0/gems/railties-7.0.4.2/lib/rails/commands/rake/rake_command.rb:20:in `block in perform'
/rails/vendor/bundle/ruby/3.1.0/gems/railties-7.0.4.2/lib/rails/commands/rake/rake_command.rb:18:in `perform'
/rails/vendor/bundle/ruby/3.1.0/gems/railties-7.0.4.2/lib/rails/command.rb:51:in `invoke'
/rails/vendor/bundle/ruby/3.1.0/gems/railties-7.0.4.2/lib/rails/commands.rb:18:in `<main>'
<internal:/usr/local/lib/ruby/site_ruby/3.1.0/rubygems/core_ext/kernel_require.rb>:37:in `require'
<internal:/usr/local/lib/ruby/site_ruby/3.1.0/rubygems/core_ext/kernel_require.rb>:37:in `require'
/rails/vendor/bundle/ruby/3.1.0/gems/bootsnap-1.16.0/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:32:in `require'
/rails/bin/rails:4:in `<main>'
(See full trace by running task with --trace)
Error: ssh shell: Process exited with status 1

my Docker file :

# syntax = docker/dockerfile:1

# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
ARG RUBY_VERSION=3.1.2
FROM ruby:$RUBY_VERSION-slim as base

# Rails app lives here
WORKDIR /rails

# Set production environment
ENV RAILS_ENV="production" \
    BUNDLE_WITHOUT="development:test" \
    BUNDLE_DEPLOYMENT="1"

# Update gems and bundler
RUN gem update --system --no-document && \
    gem install -N bundler


# Throw-away build stage to reduce size of final image
FROM base as build

# Install packages needed to build gems and node modules
RUN apt-get update -qq && \
    apt-get install --no-install-recommends -y build-essential curl libpq-dev node-gyp pkg-config python-is-python3

# Install JavaScript dependencies
ARG NODE_VERSION=12.22.12
ARG YARN_VERSION=1.22.19
ENV PATH=/usr/local/node/bin:$PATH
RUN curl -sL https://github.com/nodenv/node-build/archive/master.tar.gz | tar xz -C /tmp/ && \
    /tmp/node-build-master/bin/node-build "${NODE_VERSION}" /usr/local/node && \
    npm install -g yarn@$YARN_VERSION && \
    rm -rf /tmp/node-build-master

# Install application gems
COPY --link Gemfile Gemfile.lock ./
RUN bundle install && \
    bundle exec bootsnap precompile --gemfile && \
    rm -rf ~/.bundle/ $BUNDLE_PATH/ruby/*/cache $BUNDLE_PATH/ruby/*/bundler/gems/*/.git

# Install node modules
COPY --link package.json package-lock.json yarn.lock ./
RUN yarn install --frozen-lockfile

# Copy application code
COPY --link . .

# Precompile bootsnap code for faster boot times
RUN bundle exec bootsnap precompile app/ lib/

# Precompiling assets for production without requiring secret RAILS_MASTER_KEY
RUN SECRET_KEY_BASE=DUMMY ./bin/rails assets:precompile
RUN rm -f /rails/tmp/pids/server.pid

# Final stage for app image
FROM base

# Install packages needed for deployment
RUN apt-get update -qq && \
    apt-get install --no-install-recommends -y postgresql-client && \
    rm -rf /var/lib/apt/lists /var/cache/apt/archives

# Run and own the application files as a non-root user for security
RUN useradd rails --home /rails --shell /bin/bash
USER rails:rails

# Copy built artifacts: gems, application
COPY --from=build /usr/local/bundle /usr/local/bundle
COPY --from=build --chown=rails:rails /rails /rails

# Deployment options
ENV RAILS_LOG_TO_STDOUT="1" \
    RAILS_SERVE_STATIC_FILES="true"

# Entrypoint prepares the database.
ENTRYPOINT ["/rails/bin/docker-entrypoint"]

# Start the server by default, this can be overwritten at runtime
EXPOSE 3000
CMD ["./bin/rails", "server"]

db/seeds.rb :

require "./db/environment/#{Rails.env.downcase}.rb"

db/enviroment/development.rb :

require_relative '../seeds/dishes'
require_relative '../seeds/genre_tags'
require_relative '../seeds/ingredient_tags'

db/seeds/dishes.rb :

Dish.find_or_create_by!(name: 'sushi')
Dish.find_or_create_by!(name: 'ramen')
Dish.find_or_create_by!(name: 'tenpura')
Dish.find_or_create_by!(name: 'udon')

If there are any other files you would like me to show you, please let me know.
We will add them to the site as they become available.

bin/rails needs to be run from the ‘/rails’ directory. Specifying the full path doesn’t work.

Easiest thing to do is to split the command up:

flyctl ssh console
cd /rails
bin/rails db:seed

If this is something you expect to do frequently, you can adjust the files in your bin directory to set the current working directory using:

bin/rails generate dockerfile --bin-cd
fly deploy

This change will enable flyctl ssh console -C "/rails/bin/rails db:seed" to work as a single command.

The value of Rails.env.downcase will be production when deployed.

Thank you very much!
I created db/enviroment/production.rb and was able to resolve the issue!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.