Cannot start a Self-Hosting
See original GitHub issueThe ‘docker-compose up’ command returns the following error:
/usr/share/dotnet/sdk/3.1.201/NuGet.targets(124,5): error: Unable to load the service index for source https://f.feedz.io/foundatio/foundatio/nuget/index. json. [/app/Exceptionless.sln]
/usr/share/dotnet/sdk/3.1.201/NuGet.targets(124,5): error: Resource temporarily unavailable [/app/Exceptionless.sln]
ERROR: Service 'api' failed to build: The command '/bin /sh -c dotnet restore' returned a non-zero code: 1
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:11 (5 by maintainers)
Top Results From Across the Web
Issue of being unable to connect to my self hosted sites ...
This works fine so far, I have successfully created my own matrix servers and searx instances that are encrypted with TLS and available...
Read more >Ask HN: How can a total beginner start with self-hosting?
I'd suggest using official docker images to get started as there's plenty documentation available for all projects and experimenting is a bit easier...
Read more >Owin Self Host Will Not Start
When I make a setup project with the Visual Studio Extension and build and install and then run with admin privalages I don't...
Read more >Self-Hosted dashboard stuck on `Connecting to Default ...
The main self-hosting guide containers all work, although the Dashboard gets stuck, and I need to get this running as soon as possible....
Read more >Self Hosted Supabase can't start due to YML syntax error
To Reproduce · Clone the repository · Navigate to ./supabase/docker · Copy the envs by running cp .env.example .env · Run docker-compose up ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@mariohik sorry about that. It should be a lot simpler now. The default docker-compose.yml doesn’t do any code building now.
As I don’t have a lot of knowledge of Linux, I solved it in another way. What I did was as follows: 1 - I installed Docker for Windows on my notebook 2 - I generated the images using the ‘docker-compose up’ command on it 3 - I exported the images with the command ‘docker save <images> -o exceptionless.tar’ 4 - I imported the images on the desired computer using ‘docker load -i exceptionless.tar’ 5 - I renamed the images that were not with the correct name ‘docker image tag d583c3ac45fd exceptionless/api: latest’ 6 - Then I ran the command ‘docker-compose up’ normally.
I know it’s not the ideal solution, but it worked.