manual: fixing parsing #70

Merged
mik-tf merged 34 commits from development_manual2 into development 2024-05-14 17:27:45 +00:00
Showing only changes of commit fb521d5446 - Show all commits

View File

@ -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 <docker_username>/<docker_repo_name>:<tag> .
```
* Example:
* ```
```
docker build -t dockerhubuser/nextcloudaio .
```
* Push the docker container to the [Docker Hub](https://hub.docker.com/)
* Template:
* ```
```
docker push <your_username>/<docker_repo_name>
```
* 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/<account_name>
```
@ -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>/<docker_username>-<docker_image_name>-<tagname>.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
```