etcd - Distributed key-value store
Everything you need to deploy Etcd 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 Etcd up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Etcd with:
blastdock init etcd
Interactive mode:
blastdock init etcd -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 Etcd installation with these configuration options.
Client port
Peer port
Node name
Complete Docker Compose configuration for Etcd deployment.
version: '3.8'
services:
etcd:
image: bitnami/etcd:latest
container_name: {{ project_name }}_etcd
restart: unless-stopped
ports:
- "2379"
- "2380"
environment:
0: ETCD_NAME={{ node_name }}
1: ALLOW_NONE_AUTHENTICATION=yes
- ETCD_ADVERTISE_CLIENT_URLS=http: //etcd:2379
- ETCD_LISTEN_CLIENT_URLS=http: //0.0.0.0:2379
- ETCD_INITIAL_ADVERTISE_PEER_URLS=http: //etcd:2380
- ETCD_LISTEN_PEER_URLS=http: //0.0.0.0:2380
2: ETCD_INITIAL_CLUSTER_TOKEN=etcd-cluster
- ETCD_INITIAL_CLUSTER={{ node_name }}=http: //etcd:2380
3: ETCD_INITIAL_CLUSTER_STATE=new
volumes:
- /bitnami/etcd
networks:
- etcd_network
volumes:
etcd_data:
driver: local
networks:
etcd_network:
driver: bridge