shlogg · Early preview
Sinaptia @sinaptia_dev

We combine Ruby on Rails mastery with strategic thinking to deliver exceptional software solutions that drive business growth. Your next strategic Ruby on Rails team!

Upgrading Ruby On Rails Apps: A Step-by-Step Guide

Upgrading Ruby on Rails apps is crucial due to rapid framework releases & EOLs. Assess app's current version, desired version, infrastructure, database, & test coverage before upgrading in baby steps, ensuring compatibility & security.

Optimize Your Docker Images With These 5 Tips

Optimize your Docker images with these 5 tips: .dockerignore, smaller base images (like ruby:2.6-alpine3.9), Dive tool, minimize layers & package manager tweaks. Smaller images = faster deploys!

Dockerizing Ruby On Rails And Everyday Tasks In Containers

dockerizing ruby on rails app continues with everyday tasks in containers. run rake tasks & rails commands using `docker-compose` like `$ docker-compose run web rails routes`. tip: create custom scripts/aliases for repetitive tasks.

Dockerizing A Ruby On Rails App With Docker And Docker-Compose

Dockerizing a Ruby on Rails app: create a Dockerfile, define database with docker-compose, set config/database.yml & .dockerignore files. Build & run containers with `docker-compose up --build`.