47 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
 | |
| 
 | |
| # Profil par défaut
 | |
| #PROFILE=prod
 | |
| 
 | |
| # Aliases pour docker-machine
 | |
| #DM_ALIASES=(alias:name)
 | |
| 
 | |
| # Profiles pour docker-machine
 | |
| #DM_PROFILES=(name:profile...)
 | |
| 
 | |
| # Répertoires de gestion de cluster. Dans chacun de ces répertoires, le fichier
 | |
| # 0config/configure.conf est sourcé à la recherche de définitions de profils et
 | |
| # d'aliases
 | |
| #CLUSTERDIRS=(~/wop/containers/*.univ.run)
 | |
| 
 | |
| # Répertoire de base par défaut des projets en mode devel
 | |
| #DEFAULT_DEVEL_SRCDIR="$HOME/wop"
 | |
| #COMPOSER_DEVEL_SRCDIR="$HOME/wop/php"
 | |
| #MAVEN_DEVEL_SRCDIR="$HOME/wop/sn"
 | |
| 
 | |
| # Image à utiliser pour les builds
 | |
| #DEFAULT_COMPOSER_IMAGE=pubdocker.univ-reunion.fr/image/phpbuilder:d11
 | |
| #DEFAULT_MAVEN_IMAGE=pubdocker.univ-reunion.fr/image/javabuilder:d11
 | |
| 
 | |
| # Mappings d'hôtes à activer pour les builds à base d'image
 | |
| #DEFAULT_HOST_MAPPINGS=()
 | |
| #prod_HOST_MAPPINGS=(pridocker.univ-reunion.fr:10.85.1.56 pubdocker.univ-reunion.fr:10.85.1.57 repos.univ-reunion.fr:10.85.1.57 git.univ-reunion.fr:10.85.1.55)
 | |
| #test_HOST_MAPPINGS=("${prod_HOST_MAPPINGS}")
 | |
| 
 | |
| #case "$PROFILE" in
 | |
| #jclain)
 | |
| #    REGISTRY=docker.jclain.fr
 | |
| #    PRIVAREG=docker.jclain.fr
 | |
| #    ;;
 | |
| #devel)
 | |
| #    REGISTRY=docker.devel.self
 | |
| #    PRIVAREG=docker.devel.self
 | |
| #    ;;
 | |
| #prod|test|*)
 | |
| #    REGISTRY=pubdocker.univ-reunion.fr
 | |
| #    PRIVAREG=pridocker.univ-reunion.fr
 | |
| #    ;;
 | |
| #esac
 | |
| #: ${DEFAULT_COMPOSER_IMAGE:=$REGISTRY/image/phpbuilder:d11}
 | |
| #: ${DEFAULT_MAVEN_IMAGE:=$REGISTRY/image/javabuilder:d11}
 |