https://github.com/namikazebadri/starterkit-rails
Rails project template with a lot of project basic project must-have, such as containerization and deployments to GCR, ECR, Dockerhub and regular old VM using Github Actions. Also Unit Test, Code Coverage, Static Analysis and Staged Flow (such as dev, staging, uat and production) are part of this project template repository.
https://github.com/namikazebadri/starterkit-rails
docker-image dockerhub project-template rails rails-application ruby
Last synced: about 2 months ago
JSON representation
Rails project template with a lot of project basic project must-have, such as containerization and deployments to GCR, ECR, Dockerhub and regular old VM using Github Actions. Also Unit Test, Code Coverage, Static Analysis and Staged Flow (such as dev, staging, uat and production) are part of this project template repository.
- Host: GitHub
- URL: https://github.com/namikazebadri/starterkit-rails
- Owner: namikazebadri
- License: mit
- Created: 2021-04-05T04:41:25.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-16T14:21:27.000Z (about 5 years ago)
- Last Synced: 2025-06-26T09:08:50.227Z (about 1 year ago)
- Topics: docker-image, dockerhub, project-template, rails, rails-application, ruby
- Language: Ruby
- Homepage:
- Size: 158 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rails Docker Image
Build docker image for Rails application.
## Build Image
To build image run this command (__change the tag name & version with your preferred tag name & version__).
`$ docker build . -t myorganization/myimage:1.0.0`
## Running a Container from Image
To create a container from the image, run this command (__change the tag name & version with your preferred tag name & version__).
`$ docker run -d -p 3000:3000 --name rails-app myorganization/myimage:1.0.0`
Then you can access the app from the browser with this url: `http://127.0.0.1:3000`
## Dockerhub image
This repository is proven by running build in Dockerhub, you can see the result [here](https://hub.docker.com/r/namikazebadri/rails-app).