Docker Compose configuration and scripts for experimenting with etcd and etcd-browser.
To run etcd and etcd-browser run:
docker-compose up -dTo validate that etcd started correctly run:
etcd=$(bin/service_address.sh etcd0 2379)
curl $etcd/v2/keys
curl $etcd/v2/keys/foo -XPUT -d value=bar
etcd_all="{$(bin/service_address.sh etcd0 2379),$(bin/service_address.sh etcd1 2379),$(bin/service_address.sh etcd2 2379)}"
curl $etcd_all/v2/keys
curl $etcd_all/v2/stats/leaderIf you are using firefox you can view your new index in etcd-browser by running bin/firefox_etcd.sh.
This setup and the example scripts should be compatible with any of the following scenarios:
- Local Docker instance
- Remote Docker Machine instance
- Remote Docker Swarm cluster
Written with StackEdit.