Feature Request- possibility to run app on any port #1180
Closed
Voicu-Paul61
started this conversation in
Feature Requests
Replies: 2 comments 2 replies
-
It seems that this is already possible. In the .env.example-File there is an ENV called
|
Beta Was this translation helpful? Give feedback.
2 replies
-
I'm going to close this since this is fully supported. To run the Rails app on a different port, specify it in your
To run the Docker Compose stack on a different port, you'll need to map from your Rails port to the appropriate system port: ports:
# app will be available on port 4000, while the Rails app runs on port 3000
- 4000:3000 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the feature
So I plan on self-hosting this on a machine that has many other self-hosted services and that means that port 3000 might be used so I want to be able to change the port and switch to whatever port I want, changing it in the compose file doesn't do anything as when I go to ip:port I get ip:port didn't send any data and the logs still show that it is starting on 3000 even if it doesn't start it on 3000
Why is this feature important?
Openness to different environments
Additional context, screenshots, and relevant links
No response
Beta Was this translation helpful? Give feedback.
All reactions