Skip to content

Commit

Permalink
Update license
Browse files Browse the repository at this point in the history
  • Loading branch information
lucentlabz authored Aug 10, 2024
1 parent 7edcc6b commit 794cbb5
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions license
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
cat <<EOF > 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

0 comments on commit 794cbb5

Please sign in to comment.