Skip to content
This repository has been archived by the owner on Nov 1, 2018. It is now read-only.

Commit

Permalink
#31 adding templeton containers to compose.yaml template
Browse files Browse the repository at this point in the history
  • Loading branch information
donsizemore committed May 2, 2016
1 parent 41deb0d commit f71b202
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion ansible/roles/docker/templates/compose.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ config_saved_searches:
image: {{ docker.registry.base }}/config_{{compose.de_env}}:{{compose.de_tag}}
container_name: config-saved-searches

config_templeton_periodic:
image: {{ docker.registry.base }}/config_{{compose.de_env}}:{{compose.de_tag}}
container_name: config-templeton-periodic

config_terrain:
image: {{ docker.registry.base }}/config_{{compose.de_env}}:{{compose.de_tag}}
container_name: config-terrain
Expand Down Expand Up @@ -319,7 +323,7 @@ iplant_email:

iplant_groups:
image: {{iplant_groups_docker_repo}}/{{iplant_groups.image_name}}:{{compose.de_tag}}
container_name: iplant-groups
container_name: {{iplant_groups.image_name}}
command: --config /etc/iplant/de/iplant-groups.properties
restart: on-failure:3
environment:
Expand Down Expand Up @@ -439,6 +443,22 @@ saved_searches:
- /etc/localtime:/etc/localtime
- /etc/timezone:/etc/timezone

templeton_periodic:
image: discoenv/templeton:{{compose.de_tag}}
container_name: templeton-periodic
command: --mode periodic --config /etc/iplant/de/templeton-periodic.properties
restart: on-failure:3
#ports:
# - "{{templeton_periodic.port}}:60000"
log_driver: "syslog"
log_opt:
syslog-tag: templeton
volumes_from:
- config_templeton_periodic
volumes:
- /etc/localtime:/etc/localtime
- /etc/timezone:/etc/timezone

terrain:
image: discoenv/terrain:{{compose.de_tag}}
container_name: terrain
Expand Down

0 comments on commit f71b202

Please sign in to comment.