Skip to content

Commit

Permalink
Rename containers in README and build script
Browse files Browse the repository at this point in the history
  • Loading branch information
hardillb committed Feb 22, 2024
1 parent 5f7ed0a commit 32f1ac6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@ This will mean that any host at `example.com` will resolve to the `192.168.0.8`

### Building Containers

To build the 2 required containers simply run `./build-containers.sh`.
To build thes required containers simply run `./build-containers.sh`.

This will build and tag both `flowforge/forge-docker` and `flowforge/node-red` and `flowforge/file-server`.
This will build and tag `flowfuse/forge-docker` and `flowfuse/node-red` and `flowfuse/file-server`.

#### flowforge/flowforge-docker
#### flowfuse/flowforge-docker

This container holds the FlowFuse App and the Docker Driver.

#### flowforge/node-red
#### flowfuse/node-red

This is a basic Node-RED image with the FlowFuse Launcher and the required Node-RED plugins to talk to the FlowFuse Platform.

This is the container you can customize for your deployment.

#### flowforge/file-server
#### flowfuse/file-server

This holds the Object Store used to allow persistent file storage for Projects running on Docker

Expand Down
6 changes: 3 additions & 3 deletions build-containers.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

docker build flowforge-docker -t flowforge/forge-docker
docker build node-red-container -t flowforge/node-red
docker build file-server -t flowforge/file-server
docker build flowforge-docker -t flowfuse/forge-docker
docker build node-red-container -t flowfuse/node-red
docker build file-server -t flowfuse/file-server

0 comments on commit 32f1ac6

Please sign in to comment.