Codenvy stack/library: Can not find the template - codenvy

The following youtube talks about go stack/liberay Codenvy?
https://www.youtube.com/watch?v=1QupRkOqrmQ
Thanks

The stack documentation is here: https://codenvy.com/docs/getting-started/runtime-stacks/index.html
There are examples there and a pointer to the github repo where the dockerfiles / compose files are located.

Related

Where is server.js in Bitnami?

bitnami server.js in the course
The teacher has the following directory for server.js in Bitnami. But I don't have this directory and I can't even find documentation for this
You teacher is using a really old version of Parse (from 2016). The new Bitnami Parse solution includes the Parse files inside the /opt/bitnami/parse directory. You can find the server.js file in there.
If you want to perform any change in the configuration in the solution, we suggest you take a look at our documentation or our community forums in case you have any questions.
https://docs.bitnami.com/aws/apps/parse/
https://community.bitnami.com/

artifactory_extra_conf not available in 6.1.0

The documentation states that extra configuration can be put in the /artifactory_extra_conf directory. This directory does not exist in the artifactory-oss:6.1.0 docker image. When I create the directory myself it is not used, also I see no reference of it in the /entrypoint-artifactory.sh script.
Does anybody know if this behavior has changed and documentation is simply behind or that I'm maybe misinterpreting the docs?

AspNetCore:2.1 not found

Created a new .NET CORE 2.1 (preview) web app. Running it in local docker with Linux container
I am getting compiler error:
Error Building blobtest
Service 'blobtest' failed to build: manifest for microsoft/aspnetcore:2.1 not found.
My dotnetversion
C:\WINDOWS\system32>dotnet --version
2.1.300-preview2-008530
They have changed the repo for .NET Core 2.1 onwards to microsoft/dotnet.
Change your FROM statement to reference microsoft/dotnet using the following tags:
2.1-sdk
2.1-aspnetcore-runtime
2.1-runtime
Documentation on how to upgrade can be found here
I had this issue as well. I thought I'd update this post to show the fix here. Thanks to Marius Bidireac for the link to the resource.
Here is an excerpt from the original docker file
FROM microsoft/aspnetcore:2.0 AS base
FROM microsoft/aspnetcore-build:2.0 AS build
Here is an excerpt from the corrected docker file
FROM microsoft/dotnet:2.1-aspnetcore-runtime AS base
FROM microsoft/dotnet:2.1-sdk AS build
If you are using GitLab CI, then these images don't work—maybe because they changed the names of the images again. See official page on Docker.
If I used the labels suggested by this answer,
image: microsoft/dotnet:2.2
Then, it kept giving the errors,
manifest for microsoft/dotnet:2.2 not found
Solution to this was to use the recent naming convention provided by Microsoft. Please see the Docker link I provided above. In my GitLab CI (.gitlab-ci.yml) file I used the following and it worked,
image: mcr.microsoft.com/dotnet/core/sdk:2.2
Now the build pipeline succeeds just fine.

Configure Schemacrawler docker via configuration file?

Schemacrawler makes reference to a "configuration file", e.g. in https://www.schemacrawler.com/diagramming.html it says:
Show column ordinals, by setting configuration option schemacrawler.format.show_ordinal_numbers=true in the configuration file.
But I've not found what and where that file is.
I run Schemacrawler from its provided Docker images and struggle to make sense of where to configure e.g. schemacrawler.format.show_ordinal_numbers=true as referenced in the above docs.
Anyone know how this is intended to work?
(BTW I'm asking on SO because their repository suggests to do so)
Seems it makes use of this file: config/schemacrawler.config.properties.
From its Github repo I found these links:
Diagram Readme
Sample config file
Jon,
Please use the latest SchemaCrawler Docker image. When you open a shell in this Docker container, you will have a schemacrawler.config.properties file in the home directory. You can edit this file in vi, and then use it with SchemaCrawler by providing an additional -g ./schemacrawler.config.properties command-line switch. Instructions are provided on the Docker Hub SchemaCrawler page.
Sualeh Fatehi, SchemaCrawler

How to host Jazzy documentation on Bitbucket?

I have generated documents for my application with Jazzy.
now I want to add a link to index.html file which is generated by Jazzy and it's the main page of the documentation in README.md file.
the problem is when I create a link addressing index.html file it only shows me the source file. I want it to be rendered as website.
Is there anyway through this?
P.S. my bitbucket repository is a private one. and we're running a local application of Bitbucket in our local network.
Have you had a look at the documentation (https://confluence.atlassian.com/bitbucket/publishing-a-website-on-bitbucket-cloud-221449776.html)?

Resources