Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dennis-every/hello-docker-rails
A dockerized demo Rails 7 app with PostgreSQL
https://github.com/dennis-every/hello-docker-rails
Last synced: about 1 month ago
JSON representation
A dockerized demo Rails 7 app with PostgreSQL
- Host: GitHub
- URL: https://github.com/dennis-every/hello-docker-rails
- Owner: dennis-every
- Created: 2023-09-26T20:20:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-26T20:26:51.000Z (over 1 year ago)
- Last Synced: 2024-11-20T23:00:53.392Z (about 2 months ago)
- Language: Ruby
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
## Description
- A quick demo to create a Rails 7 app with PostgreSQL
- Dockerize this app by adding the Dockerfile and docker-compose.yml files
- Run docker-compose up### Steps to recreate:
- `rails new hello-docker-rails --database=postgresql`
- `cd hello-docker-rails`
- `rails g scaffold Post title body:text`
- Add Dockerfile included in this repo
- Add docker-compose.yml included in this repo
- `docker-compose up`