Here is the repository which I'm referring to. It has this
curl -fsSL https://git.coolaj86.com/coolaj86/gitea-installer.sh/raw/branch/master/install.bash | bash
command to install gitea server on linux at port 3000. How can make heroku run this command, I tried heroku bash and ran command over there and it failed.
Asked
Active
Viewed 623 times
0

codewhiz
- 165
- 3
- 12
-
2Something that's important to know: `heroku run bash` starts a new, temporary instance. Any changes you make there are not permanent; they go away as soon as you close it, and they don't affect your webserver at all. It's intended for running stuff like database migrations or debugging code that isn't working, not for making changes to your app's code. – ceejayoz Nov 14 '19 at 13:25
-
2If you review https://git.coolaj86.com/coolaj86/gitea-installer.sh/raw/branch/master/install.bash, there are a lot of things there that probably won't work on Heroku. – ceejayoz Nov 14 '19 at 13:27
-
That's bad :( Should try this [Installation with Docker](https://docs.gitea.io/en-us/install-with-docker/) given on gitea docs on heroku instead. – codewhiz Nov 14 '19 at 13:34
-
2It might be the wrong type of service for you, but it's not "bad". It's simply a platform-as-a-service provider, not a VPS or similar. – ChrisGPT was on strike Nov 14 '19 at 23:27
-
Also, what does "it failed" mean? In the future, please make sure to include _exact error messages_. See [ask]. – ChrisGPT was on strike Nov 14 '19 at 23:27