File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 33
44# This Dockerfile is designed for production, not development. Use with Kamal or build'n'run by hand:
55# docker build -t pya --platform linux/amd64 .
6- # docker run --platform linux/amd64 -d -p 80:80 -e RAILS_MASTER_KEY=<value from config/master.key> --name pya pya
6+ # docker run --platform linux/amd64 -d -p 8080:8080 -e RAILS_MASTER_KEY=<value from config/master.key> --name pya pya
77
88# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
99
@@ -66,5 +66,6 @@ USER 1000:1000
6666ENTRYPOINT ["/rails/bin/docker-entrypoint" ]
6767
6868# Start server via Thruster by default, this can be overwritten at runtime
69- EXPOSE 80
69+ ENV THRUSTER_HTTP_PORT=8080
70+ EXPOSE 8080
7071CMD ["./bin/thrust" , "./bin/rails" , "server" ]
You can’t perform that action at this time.
0 commit comments