InfluxDB - Time series database
Everything you need to deploy Influxdb with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Influxdb up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Influxdb with:
blastdock init influxdb
Interactive mode:
blastdock init influxdb -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Influxdb installation with these configuration options.
HTTP API port
Admin username
Admin password
Organization name
Initial bucket name
Complete Docker Compose configuration for Influxdb deployment.
version: '3.8'
services:
influxdb:
image: influxdb:latest
container_name: {{ project_name }}_influxdb
restart: unless-stopped
ports:
- "8086"
environment:
0: DOCKER_INFLUXDB_INIT_MODE=setup
1: DOCKER_INFLUXDB_INIT_USERNAME={{ admin_user }}
2: DOCKER_INFLUXDB_INIT_PASSWORD={{ admin_password }}
3: DOCKER_INFLUXDB_INIT_ORG={{ org }}
4: DOCKER_INFLUXDB_INIT_BUCKET={{ bucket }}
5: DOCKER_INFLUXDB_INIT_RETENTION=1w
volumes:
- /var/lib/influxdb2
- /etc/influxdb2
networks:
- influxdb_network
volumes:
influxdb_data:
driver: local
influxdb_config:
driver: local
networks:
influxdb_network:
driver: bridge