From ea029c5f1c0b76e59a54998e560708b5902d8266 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Thu, 29 Apr 2021 13:21:24 +0200 Subject: [PATCH] Change dev ports to DockerContainerPool to 7100 --- config/docker.yml.erb.ci | 4 ++-- config/docker.yml.erb.example | 4 ++-- docs/LOCAL_SETUP.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/docker.yml.erb.ci b/config/docker.yml.erb.ci index da8e5919..05b17d71 100644 --- a/config/docker.yml.erb.ci +++ b/config/docker.yml.erb.ci @@ -3,7 +3,7 @@ default: &default connection_timeout: 3 pool: active: false - location: http://localhost:3000 + location: http://localhost:7100 ports: !ruby/range 4500..4600 development: @@ -13,7 +13,7 @@ development: ws_client_protocol: 'ws:' #set the websocket protocol to be used by the client to connect to the rails server (ws on development, wss on production) workspace_root: <%= Rails.root.join('tmp', 'files', Rails.env) %> pool: - location: http://localhost:3000 + location: http://localhost:7100 active: true refill: async: false diff --git a/config/docker.yml.erb.example b/config/docker.yml.erb.example index 62e94d52..6f8e20a6 100644 --- a/config/docker.yml.erb.example +++ b/config/docker.yml.erb.example @@ -3,7 +3,7 @@ default: &default connection_timeout: 3 pool: active: false - location: http://localhost:3000 + location: http://localhost:7100 ports: !ruby/range 4500..4600 development: @@ -14,7 +14,7 @@ development: workspace_root: <%= Rails.root.join('tmp', 'files', Rails.env) %> pool: active: true - location: http://localhost:3100 + location: http://localhost:7100 refill: async: false batch_size: 8 diff --git a/docs/LOCAL_SETUP.md b/docs/LOCAL_SETUP.md index 58407c1d..fe0ba695 100644 --- a/docs/LOCAL_SETUP.md +++ b/docs/LOCAL_SETUP.md @@ -35,7 +35,7 @@ You can [configure vagrant as remote interpreter in RubyMine](https://www.jetbra ```bash vagrant ssh cd /home/vagrant/dockercontainerpool -rails s -p 3100 +rails s -p 7100 # using another ssh session cd /home/vagrant/codeocean