HashiCorp Nomad - Workload orchestrator
Everything you need to deploy Nomad 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 Nomad up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Nomad with:
blastdock init nomad
Interactive mode:
blastdock init nomad -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 Nomad installation with these configuration options.
HTTP API port
RPC port
Serf port
Complete Docker Compose configuration for Nomad deployment.
version: '3.8'
services:
nomad:
image: hashicorp/nomad:latest
container_name: {{ project_name }}_nomad
restart: unless-stopped
ports:
- "4646"
- "4647"
- "4648"
volumes:
- /nomad/data
networks:
- nomad_network
volumes:
nomad_data:
driver: local
networks:
nomad_network:
driver: bridge