This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
years="1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015" | |
months1="01 02 03 04 05 06 07 08 09 10 11 12" | |
months2="11 12" | |
n=1 | |
for y in $years | |
do | |
if [ $y = "1997" ]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conf_docker_containers: | |
portainer: | |
image: portainer/portainer | |
state: started | |
restart_policy: always | |
published_ports: "9000:9000" | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
- name: provision docker containers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
admins: | |
- name: username1 | |
pass: <redacted> | |
- name: username2 | |
pass: <redacted> | |
home: "elephant" <-- means you'll get HOMEROOT/elephant rather that HOMEROOT/username2 |