Skip to content

Instantly share code, notes, and snippets.

@infamousjoeg
Last active June 26, 2018 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infamousjoeg/78405fa1862f6cd45b6ea7e21d8b3ff4 to your computer and use it in GitHub Desktop.
Save infamousjoeg/78405fa1862f6cd45b6ea7e21d8b3ff4 to your computer and use it in GitHub Desktop.
Ansible Playbook to deploy a Bitcoind container
- hosts: localhost
connection: local
tasks:
- name: Start Up Container
docker_container:
name: cicd_InsecureDemo_test
image: kylemanna/bitcoind:latest
ports:
- "8333:8333"
- "0.0.0.0:8332:8332"
volumes:
- bitcoind-data:/bitcoin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment