Commit and Push All New ApplicationsΒΆ

Use git status in the containers folder to verify all the changes you have done:

 git status

Example Output:

On branch devel
Your branch is up to date with 'origin/devel'.

Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        new file:   flask-mqtt-nginx/docker-compose.yml
        new file:   flask-mqtt-nginx/nginx.conf
        new file:   flask-mqtt/Dockerfile
        new file:   flask-mqtt/app.py
        new file:   mosquitto/docker-compose.yml
        new file:   shellhttpd-mqtt/Dockerfile
        new file:   shellhttpd-mqtt/docker-compose.yml
        new file:   shellhttpd-mqtt/httpd.sh

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   flask-mqtt-nginx/docker-compose.yml
        modified:   shellhttpd-mqtt/docker-compose.yml

Add all new files and changes:

git add mosquitto shellhttpd-mqtt flask-mqtt-nginx flask-mqtt

Commit your changes with the message:

git commit -m "Adding Flask, Mosquitto and shellhttpd-MQTT apps"

Push all committed modifications to the remote repository:

git push

Example output:

Enumerating objects: 15, done.
Counting objects: 100% (15/15), done.
Delta compression using up to 16 threads
Compressing objects: 100% (13/13), done.
Writing objects: 100% (14/14), 2.48 KiB | 2.48 MiB/s, done.
Total 14 (delta 0), reused 4 (delta 0), pack-reused 0
remote: Trigger CI job...
remote: CI job started: https://ci.foundries.io/projects/cavel/lmp/builds/61/
To https://source.foundries.io/factories/cavel/containers.git/
   f358677..72a9da5  devel -> devel

Note

git push output will indicate the start of a new CI job.

Go to https://app.foundries.io, select your Factory and click on Targets:

The latest Target named containers-devel should be the CI job you just created.

Wait until it finishes and move to the next step.