murat.ustuntas PRO
Joined 12/28/2020
murat.ustuntas PRO said almost 3 years ago on Hotwire & ViewComponents :
Hey,

I would like to see more videos on this topic. I would be very happy if the Hotwire & ViewComponent 
videos contain more comprehensive and deep information.

murat.ustuntas PRO said almost 3 years ago on Hotwire & ViewComponents :
Hey David,

Actually there is. That is. You have a data stream for multiple products from one source. 
Such as reflecting this data to everyone on that page, increasing and decreasing values 
after a certain calculation. It's a kind of stock market index application.

murat.ustuntas PRO said over 2 years ago on Docker on Rails 7 :
Hi,

After installing the docker on my linux, the docker compose give me an error like:

 ⠿ Container rails7-postgres-1  Running                                                                                   0.0s
 ⠿ Container rails7-redis-1     Running                                                                                   0.0s
Could not find nokogiri-1.12.5, mini_portile2-2.6.1 in any of the sources
Run `bundle install` to install missing gems.

Then, i try to run 
docker compose run --rm app bin/rails bundle install

But it is still same. how can i solve the problem?

Regards,

Murat Üstüntaş

murat.ustuntas PRO said over 2 years ago on Docker on Rails 7 :
Hi,
I could not change the Dockerfile.dev. It is as in the source file. 

ARG RUBY_VERSION
FROM ruby:$RUBY_VERSION

RUN apk add --no-cache --update build-base \
  bash \
  git \
  postgresql-dev \
  nodejs \
  yarn \
  imagemagick \
  vips \
  tzdata \
  && rm -rf /var/cache/apk/*

RUN mkdir -p /app
WORKDIR /app

COPY Gemfile Gemfile.lock ./
COPY package.json yarn.lock ./

RUN gem update --system
RUN bundle install -j $(nproc)
RUN yarn install

murat.ustuntas PRO said over 2 years ago on Docker on Rails 7 :
After downloading your source file, I ran it without making any changes, following all your commands. Sorry I encountered this error. I didn't make any changes on the Dockerfile and docker-compose.yml. The volumes still same as in the docker-compose.yml

volumes:
  bundle:
  node_modules:
  postgres:

Also, my docker version is Docker version 20.10.9, build c2ea9bc90b