├── .gitmodules ├── README.md ├── bin ├── firefox_etcd.sh ├── service_address.sh └── start_swarm_cluster.sh └── docker-compose.yaml /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwilbraham/docker-compose-etcd/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwilbraham/docker-compose-etcd/HEAD/README.md -------------------------------------------------------------------------------- /bin/firefox_etcd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | firefox $($(dirname $0)/service_address.sh etcd-browser 8000) 4 | -------------------------------------------------------------------------------- /bin/service_address.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwilbraham/docker-compose-etcd/HEAD/bin/service_address.sh -------------------------------------------------------------------------------- /bin/start_swarm_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwilbraham/docker-compose-etcd/HEAD/bin/start_swarm_cluster.sh -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwilbraham/docker-compose-etcd/HEAD/docker-compose.yaml --------------------------------------------------------------------------------