We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb7d68b commit 314f1f9Copy full SHA for 314f1f9
Dockerfile
@@ -62,7 +62,7 @@ RUN bundle install && \
62
63
64
# This image should expose port 80.
65
-EXPOSE 80/tcp
+EXPOSE 3000/tcp
66
67
# Finally, start the server using Puma!
68
CMD bundle exec puma -C config/puma.rb -e ${RAILS_ENV} -b tcp://0.0.0.0:80
config/puma.rb
@@ -11,7 +11,7 @@
11
12
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
13
#
14
-port ENV.fetch("PORT") { 80 }
+port ENV.fetch("PORT") { 3000 }
15
16
# Specifies the `environment` that Puma will run in.
17
0 commit comments