Skip to content

Docker stack for getting started on IOT on the Raspberry PI

License

Notifications You must be signed in to change notification settings

SensorsIot/IOTstack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c614c20 · Feb 3, 2022
Jan 28, 2022
Oct 6, 2020
Feb 1, 2022
Apr 26, 2020
Feb 3, 2022
Jul 8, 2021
Jan 4, 2022
Nov 17, 2019
Nov 14, 2020
Jul 2, 2019
Jan 18, 2022
Dec 18, 2021
Nov 16, 2021
Jan 28, 2022

Repository files navigation

IOTstack

IOTstack is a builder for docker-compose to easily make and maintain IoT stacks on the Raspberry Pi.

getting started

See Getting Started in the IOTstack Wiki. It includes:

  • A link to Andreas Spiess videos #295 and #352.
  • How to download the project (including constraints you need to observe).
  • How to migrate from the older gcgarner/IOTstack repository.
  • Running the menu to install Docker and set up your containers.
  • Useful Docker commands (start & stop the stack, manage containers).
  • Stack maintenance.

significant change to networking

Networking under both new menu (master branch) and old menu (old-menu branch) has undergone a significant change. This will not affect new users of IOTstack (who will adopt it automatically). Neither will it affect existing users who do not use the menu to maintain their stacks (see adopting networking changes by hand below).

Users who do use the menu to maintain their stacks will also be unaffected until the next menu run, at which point it will be prudent to down your stack entirely and re-select all your containers. Downing the stack causes Docker to remove all associated networks as well as the containers.

These changes mean that networking is identical under both old and new menus. To summarise the changes:

  1. Only two internal networks are defined – as follows:

    • "default" which adopts the name iotstack_default at runtime.
    • "nextcloud" which adopts the name iotstack_nextcloud at runtime.

    If you are using docker-compose v2.0.0 or later then the iotstack_nextcloud network will only be instantiated if you select NextCloud as one of your services. Earlier versions of docker-compose instantiate all networks even if no service uses them (which is why you get those warnings at "up" time).

  2. The only service definitions which now have networks: directives are:

    • NextCloud: joins the "default" and "nextcloud" networks; and
    • NextCloud_DB: joins the "nextcloud" network.

    All other containers will join the "default" network, automatically, without needing any networks: directives.

If you maintain your docker-compose.yml by hand, you can adopt the networking changes by doing the following:

  1. Take your stack down. This causes Docker to remove any existing networks.

  2. Remove all networks: directives wherever they appear in your docker-compose.yml. That includes:

    • the networks: directives in all service definitions; and
    • the networks: specifications at the end of the file.
  3. Append the contents of the following file to your docker-compose.yml:

    ~/IOTstack/.templates/env.yml
    

    For example:

    $ cat ~/IOTstack/.templates/env.yml >>~/IOTstack/docker-compose.yml
    

    The env.yml file is the same for both old-menu and master branches.

  4. If you run the NextCloud service then:

    • Add these lines to the NextCloud service definition:

       networks:
         - default
         - nextcloud
      
    • Add these lines to the NextCloud_DB service definition:

       networks:
         - nextcloud
      
  5. Bring up your stack.

contributions

Please use the issues tab to report issues.

Need help? Have a feature suggestion? Discovered a bug?

We have a Discord server setup for discussions: IOTstack Discord channel if you want to comment on features, suggest new container types, or ask the IOTstack community for help.

If you use some of the tools in the project please consider donating or contributing on their projects. It doesn't have to be monetary. Reporting bugs and creating Pull Requests helps improve the projects for everyone.

About

Docker stack for getting started on IOT on the Raspberry PI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 86.2%
  • Shell 11.6%
  • Dockerfile 2.2%