diff --git a/README.md b/README.md index d466418..0c5fcbd 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build-containers.sh b/build-containers.sh index bb43cd2..08f8d20 100755 --- a/build-containers.sh +++ b/build-containers.sh @@ -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