mirror of
https://github.com/ansible/awx.git
synced 2026-05-12 11:57:37 -02:30
Addition of inventory value for memcached image, allows for custom image locations for memcached to match other images
This commit is contained in:
committed by
Ryan Petrello
parent
41b0367627
commit
12f564e4a3
@@ -13,6 +13,9 @@ rabbitmq_password: "guest"
|
|||||||
postgresql_version: "9.6"
|
postgresql_version: "9.6"
|
||||||
postgresql_image: "postgres:{{postgresql_version}}"
|
postgresql_image: "postgres:{{postgresql_version}}"
|
||||||
|
|
||||||
|
|
||||||
|
memcached_image: "memcached"
|
||||||
|
memcached_version: "alpine"
|
||||||
memcached_host: "memcached"
|
memcached_host: "memcached"
|
||||||
memcached_port: "11211"
|
memcached_port: "11211"
|
||||||
|
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ services:
|
|||||||
no_proxy: {{ no_proxy | default('') }}
|
no_proxy: {{ no_proxy | default('') }}
|
||||||
|
|
||||||
memcached:
|
memcached:
|
||||||
image: memcached:alpine
|
image: "{{ memcached_image }}:{{ memcached_version }}"
|
||||||
container_name: awx_memcached
|
container_name: awx_memcached
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
Reference in New Issue
Block a user