[PR #57] [CLOSED] add sample project in ruby on rails with postgres #181

Closed
opened 2025-11-06 14:20:39 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/57
Author: @LukasPol
Created: 4/14/2020
Status: Closed

Base: masterHead: create-a-project-ruby-on-rails-postgres


📝 Commits (10+)

📊 Changes

95 files changed (+9397 additions, -0 deletions)

View changed files

📝 README.md (+1 -0)
ruby_on_rails-postgres/.gitignore (+32 -0)
ruby_on_rails-postgres/README.md (+95 -0)
ruby_on_rails-postgres/docker-compose.yml (+18 -0)
ruby_on_rails-postgres/web/.browserslistrc (+1 -0)
ruby_on_rails-postgres/web/.ruby-version (+1 -0)
ruby_on_rails-postgres/web/Dockerfile (+26 -0)
ruby_on_rails-postgres/web/Gemfile (+54 -0)
ruby_on_rails-postgres/web/Gemfile.lock (+225 -0)
ruby_on_rails-postgres/web/Rakefile (+6 -0)
ruby_on_rails-postgres/web/app/assets/config/manifest.js (+2 -0)
ruby_on_rails-postgres/web/app/assets/images/.keep (+0 -0)
ruby_on_rails-postgres/web/app/assets/stylesheets/application.css (+15 -0)
ruby_on_rails-postgres/web/app/channels/application_cable/channel.rb (+4 -0)
ruby_on_rails-postgres/web/app/channels/application_cable/connection.rb (+4 -0)
ruby_on_rails-postgres/web/app/controllers/application_controller.rb (+2 -0)
ruby_on_rails-postgres/web/app/controllers/concerns/.keep (+0 -0)
ruby_on_rails-postgres/web/app/helpers/application_helper.rb (+2 -0)
ruby_on_rails-postgres/web/app/javascript/channels/consumer.js (+6 -0)
ruby_on_rails-postgres/web/app/javascript/channels/index.js (+5 -0)

...and 75 more files

📄 Description

Signed-off-by: Lukas Pol lukaspaespol@gmail.com


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/docker/awesome-compose/pull/57 **Author:** [@LukasPol](https://github.com/LukasPol) **Created:** 4/14/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `create-a-project-ruby-on-rails-postgres` --- ### 📝 Commits (10+) - [`4dafb28`](https://github.com/docker/awesome-compose/commit/4dafb289761bff50a4b88e764cf389fcb647d921) add sample project in ruby on rails with postgres - [`660f311`](https://github.com/docker/awesome-compose/commit/660f311e2b11fba98d63047d68b59e11f358c6ff) add project in README - [`3702cfe`](https://github.com/docker/awesome-compose/commit/3702cfee50cf8cccfcc3d7797f9041f6a7f4f647) add how create and migrate - [`ac20b64`](https://github.com/docker/awesome-compose/commit/ac20b6471d71210df6e9a3ece8e484795f2b160f) add instructions for database - [`7aa5036`](https://github.com/docker/awesome-compose/commit/7aa50368f827b975b858bfc5a669ebae39c20a93) edit volume backend - [`474cef8`](https://github.com/docker/awesome-compose/commit/474cef8986701076d19c86ad41fb72c0b8bc9c35) move files for web/ - [`b835e6b`](https://github.com/docker/awesome-compose/commit/b835e6b196e98bc3d317c0b31805915d137e257b) fix bug .gitignore - [`c901442`](https://github.com/docker/awesome-compose/commit/c901442c655994241e11a7565cef7bde13ee5273) edit README - [`91e1360`](https://github.com/docker/awesome-compose/commit/91e1360302489613009fc459c340d42b4ab4b977) remove files tmp - [`dae0362`](https://github.com/docker/awesome-compose/commit/dae03627d4eed08f9fe4f181ebbff4487dfdd96d) change version and build ### 📊 Changes **95 files changed** (+9397 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) ➕ `ruby_on_rails-postgres/.gitignore` (+32 -0) ➕ `ruby_on_rails-postgres/README.md` (+95 -0) ➕ `ruby_on_rails-postgres/docker-compose.yml` (+18 -0) ➕ `ruby_on_rails-postgres/web/.browserslistrc` (+1 -0) ➕ `ruby_on_rails-postgres/web/.ruby-version` (+1 -0) ➕ `ruby_on_rails-postgres/web/Dockerfile` (+26 -0) ➕ `ruby_on_rails-postgres/web/Gemfile` (+54 -0) ➕ `ruby_on_rails-postgres/web/Gemfile.lock` (+225 -0) ➕ `ruby_on_rails-postgres/web/Rakefile` (+6 -0) ➕ `ruby_on_rails-postgres/web/app/assets/config/manifest.js` (+2 -0) ➕ `ruby_on_rails-postgres/web/app/assets/images/.keep` (+0 -0) ➕ `ruby_on_rails-postgres/web/app/assets/stylesheets/application.css` (+15 -0) ➕ `ruby_on_rails-postgres/web/app/channels/application_cable/channel.rb` (+4 -0) ➕ `ruby_on_rails-postgres/web/app/channels/application_cable/connection.rb` (+4 -0) ➕ `ruby_on_rails-postgres/web/app/controllers/application_controller.rb` (+2 -0) ➕ `ruby_on_rails-postgres/web/app/controllers/concerns/.keep` (+0 -0) ➕ `ruby_on_rails-postgres/web/app/helpers/application_helper.rb` (+2 -0) ➕ `ruby_on_rails-postgres/web/app/javascript/channels/consumer.js` (+6 -0) ➕ `ruby_on_rails-postgres/web/app/javascript/channels/index.js` (+5 -0) _...and 75 more files_ </details> ### 📄 Description Signed-off-by: Lukas Pol lukaspaespol@gmail.com --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-06 14:20:39 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-compose#181