Skip to content

Commit 7aabc5f

Browse files
committed
Added ruby service to make it easier to get started with your contribution
1 parent feb1a67 commit 7aabc5f

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

docker-compose.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,13 @@ services:
1717
ports:
1818
- "127.0.0.1:6379:6379"
1919
command: redis-server --save 20 1 --loglevel warning
20+
ruby:
21+
image: ruby:3.3 # Manually change this based on the desired Ruby version
22+
working_dir: /app
23+
build: .
24+
environment:
25+
BUNDLE_GEMFILE: gemfiles/rails_7.2.gemfile # Manually change this based on the desired Rails version
26+
depends_on:
27+
- mysql
28+
- postgres
29+
- redis

0 commit comments

Comments
 (0)