Rill Data image based on Rill's installation bash script.
602
This image installs Rill based on their install script: curl https://rill.sh | sh taken from https://www.rilldata.com/.
The dockerfile is accessible at GitHub - automaatio-dev / rill-data-docker.
Access the web ui by going to http://localhost:9009/.
# Docker-Compose
################################################
# Services
################################################
services:
################################################
# Rill Data
################################################
rill-data:
image: "automaatio/rill-data:latest"
container_name: "rill-data"
restart: "unless-stopped"
command: "bash -c '[ -f /rill-data/rill.yaml ] || echo \"# Default rill.yaml content\" > /rill-data/rill.yaml && rill start'" # Adds placeholder file for intial setup
ports:
- "9009:9009"
volumes:
- "/home/docker/rill-data:/rill-data"
networks:
- "rill-data"
################################################
# Networks
################################################
networks:
rill-data:
name: "rill-data"
Content type
Image
Digest
sha256:522e29a00…
Size
200 MB
Last updated
over 1 year ago
docker pull automaatio/rill-data