diff --git a/license b/license new file mode 100644 index 0000000..8023c05 --- /dev/null +++ b/license @@ -0,0 +1,51 @@ +cat < docker-compose.yml +version: "3" + +volumes: + bindplane: + prometheus: + +services: + prometheus: + container_name: bindplane-prometheus + restart: always + image: ghcr.io/observiq/bindplane-prometheus:1.67.0 + ports: + - "9090:9090" + volumes: + - prometheus:/prometheus + + transform: + container_name: bindplane-transform-agent + restart: always + image: ghcr.io/observiq/bindplane-transform-agent:1.67.0-bindplane + ports: + - "4568:4568" + + bindplane: + container_name: bindplane-server + restart: always + image: ghcr.io/observiq/bindplane-ee:1.67.0 + ports: + - "3001:3001" + environment: + - BINDPLANE_USERNAME=admin + - BINDPLANE_PASSWORD=admin + - BINDPLANE_REMOTE_URL=http://localhost:3001 + - BINDPLANE_SESSION_SECRET=$(uuidgen) + - BINDPLANE_LOG_OUTPUT=stdout + - BINDPLANE_ACCEPT_EULA=true + - BINDPLANE_PROMETHEUS_ENABLE=true + - BINDPLANE_PROMETHEUS_ENABLE_REMOTE=true + - BINDPLANE_PROMETHEUS_HOST=prometheus + - BINDPLANE_PROMETHEUS_PORT=9090 + - BINDPLANE_TRANSFORM_AGENT_ENABLE_REMOTE=true + - BINDPLANE_TRANSFORM_AGENT_REMOTE_AGENTS=transform:4568 + volumes: + - bindplane:/data + depends_on: + - prometheus + - transform +EOF + +docker-compose up -d \ No newline at end of file