/faucet-pipeline-docker

Experimental: Run faucet-pipeline in a Docker Container

Primary LanguageShell

faucet-pipeline Docker

Standalone Usage

asciicast

With docker-compose

version: "3"
services:
  app:
    # your app...

  faucet:
    image: moonglum/faucet-pipeline:latest
    command: faucet --watch
    env_file: .env
    user: "${USER_MAPPING:-app:app}"
    volumes:
    - .:/code
    - node_modules:/code/node_modules

volumes:
  node_modules: