start Rails server using rdebug-ide in Docker

This commit is contained in:
Andreas Nedbal 2022-12-24 02:57:29 +01:00 committed by Andreas Nedbal
parent 9895782a02
commit 658c56afe1
1 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@ services:
build: build:
context: . context: .
dockerfile: .docker/ruby/Dockerfile dockerfile: .docker/ruby/Dockerfile
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" command: bash -c "rm -f tmp/pids/server.pid && rdebug-ide --skip_wait_for_start --host 0.0.0.0 --port 1234 --dispatcher-port 26162 -- bin/rails s -p 3000 -b '0.0.0.0'"
depends_on: depends_on:
- postgres - postgres
- redis - redis
@ -16,10 +16,11 @@ services:
- cache:/cache - cache:/cache
ports: ports:
- 3000:3000 - 3000:3000
- 1234:1234
redis: redis:
image: redis:3.2.11-alpine image: redis:3.2.11-alpine
ports: ports:
- 6379:6379 - 6379:6379
postgres: postgres:
@ -34,4 +35,4 @@ services:
volumes: volumes:
db: db:
cache: cache: