From fb521d5446052a557b2ae542182ce5028b86cb74 Mon Sep 17 00:00:00 2001 From: Mik-TF Date: Tue, 14 May 2024 11:57:07 -0400 Subject: [PATCH] manual, parsing devs flist nc --- .../flist_nextcloud_case_study.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/collections/developers/flist/flist_case_studies/flist_nextcloud_case_study.md b/collections/developers/flist/flist_case_studies/flist_nextcloud_case_study.md index fce105f..a7049be 100644 --- a/collections/developers/flist/flist_case_studies/flist_nextcloud_case_study.md +++ b/collections/developers/flist/flist_case_studies/flist_nextcloud_case_study.md @@ -616,25 +616,25 @@ You now have access to the Docker Hub from your local computer. We will then pro * Make sure the Docker Daemon is running * Build the docker container (note that, while the tag is optional, it can help to track different versions) * Template: - * ``` + ``` docker build -t /: . ``` * Example: - * ``` + ``` docker build -t dockerhubuser/nextcloudaio . ``` * Push the docker container to the [Docker Hub](https://hub.docker.com/) * Template: - * ``` + ``` docker push / ``` * Example: - * ``` + ``` docker push dockerhubuser/nextcloudaio ``` * You should now see your docker image on the [Docker Hub](https://hub.docker.com/) when you go into the menu option `My Profile`. * Note that you can access this link quickly with the following template: - * ``` + ``` https://hub.docker.com/u/ ``` @@ -656,11 +656,11 @@ We will now convert the Docker image into a Zero-OS flist. * Under `Name`, you will see all your available flists. * Right-click on the flist you want and select `Copy Clean Link`. This URL will be used when deploying on the ThreeFold Playground. We show below the template and an example of what the flist URL looks like. * Template: - * ``` + ``` https://hub.grid.tf/<3BOT_name.3bot>/--.flist ``` * Example: - * ``` + ``` threefoldtech-nextcloudaio-latest.flist ``` @@ -843,7 +843,7 @@ We now deploy Nextcloud with Terraform. Make sure that you are in the correct fo ``` Note that, at any moment, if you want to see the information on your Terraform deployment, write the following: - * ``` + ``` terraform show ```