Sign inSign up

automaatio/rill-data

By automaatio

Updated over 1 year ago
Archived

Rill Data image based on Rill's installation bash script.

Image
Web analytics
0

602

automaatio/rill-data repository overview

Overview

This image installs Rill based on their install script: curl https://rill.sh | sh taken from https://www.rilldata.com/.

 

Dockerfile

The dockerfile is accessible at GitHub - automaatio-dev / rill-data-docker.

 

Docker Compose

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"

Tag summary

Content type

Image

Digest

sha256:522e29a00

Size

200 MB

Last updated

over 1 year ago

docker pull automaatio/rill-data