Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flowfuse/driver-docker
https://github.com/flowfuse/driver-docker
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/flowfuse/driver-docker
- Owner: FlowFuse
- License: apache-2.0
- Created: 2021-11-30T16:20:19.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T09:52:31.000Z (3 months ago)
- Last Synced: 2024-10-25T07:43:58.705Z (3 months ago)
- Language: JavaScript
- Size: 460 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# FlowFuse Docker Container Driver
FlowFuse driver to create projects as docker containers
## Configuration
In the `flowforge.yml` file
```yaml
...
driver:
type: docker
options:
socket: /tmp/docker.sock
registry: containers.flowforge.com
privateCA: /full/path/to/chain.pem
logPassthrough: true
storage:
enabled: true
path: /opt/flowfuse/storage
```- `registry` is the Docker Registry to load Stack Containers from (default: Docker Hub)
- `socket` is the path to the docker unix domain socket (default: /var/run/docker.sock)
- `privateCA`: is the fully qualified path to a pem file containing trusted CA cert chain (default: not set)
- `logPassthrough` Have Node-RED logs printed in JSON format to container stdout (default: false)
- `storage.enabled` enables mounting a directory into each Node-RED instance as persistence storage (default: false)
- `storage.path` is the fully qualified path to the root directory for the storage on the host (default: not set)### Configuration via environment variables
- `DOCKER_SOCKET` - Path to docker unix domain socket