diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d2e8d545..b5c4c7ca 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,7 +9,8 @@ "azure-cli": "latest", "docker-in-docker": "latest", "github-cli": "latest", - "terraform": "latest" + "terraform": "latest", + "ghcr.io/devcontainers/features/node": "lts" }, "customizations": { diff --git a/docs/README.md b/docs/README.md index 540d70ef..6b5c3b56 100644 --- a/docs/README.md +++ b/docs/README.md @@ -2,13 +2,39 @@ Welcome to the Nubesgen documentation. Here you'll find everything you need to learn and **deploy applications and services on Azure in minutes**. +::: danger +**NubesGen has been archived**. - +You can still find the source code and documentation on GitHub, and the latest version of the code is also available as a Docker image. + +Please note that any references to nubesgen.com in this documentation are no longer valid. Instead, we recommend running NubesGen locally (see below for details). + +::: + +## Using NubesGen locally + +1. Download the docker image `ghcr.io/microsoft/nubesgen/nubesgen:main` +1. Run the image, with exposing port 8080 +1. Go to [http://localhost:8080](http://localhost:8080) + +```bash +docker pull ghcr.io/microsoft/nubesgen/nubesgen:main +docker run --name nubesgen -d -p 8080:8080 ghcr.io/microsoft/nubesgen/nubesgen:main +``` + +You'll be able to use Nubesgen, both from the UI or from the command line. + +Once you're done, you can tear down the container and delete it with the following command: + +```bash +docker stop nubesgen +docker rm nubesgen +## Optional: delete the image from the local cache +docker rmi ghcr.io/microsoft/nubesgen/nubesgen:main + +``` ## Version compatibility diff --git a/docs/package-lock.json b/docs/package-lock.json index ea586057..4703d106 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -7,7 +7,7 @@ "": { "name": "docs", "version": "1.0.0", - "license": "ISC", + "license": "MIT", "dependencies": { "vuepress": "^1.9.7" },