mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-25 02:38:42 +08:00
26 lines
757 B
YAML
26 lines
757 B
YAML
- pause:
|
|
prompt: |
|
|
Choice ActiveMQ version:
|
|
0: ActiveMQ CLASSIC
|
|
1: ActiveMQ ARTEMIS
|
|
private: no
|
|
Default:0
|
|
register: activemq_version_options
|
|
|
|
- set_fact:
|
|
activemq_version_meta:
|
|
"0": "activemq-classic"
|
|
"1": "activemq-artemis"
|
|
|
|
- set_fact:
|
|
activemq_version: "{{activemq_version_meta[activemq_version_options.user_input]}}"
|
|
|
|
- debug:
|
|
msg: "activemq_version is {{activemq_version}}"
|
|
|
|
- name: Config .env and docker-compose for start containers
|
|
shell: |
|
|
cat {{installpath}}/{{appname}}/docker-compose.yml |yq eval 'del(.services.{{activemq_version}}.profiles)' > /tmp/tmp.yml
|
|
cat /tmp/tmp.yml > {{installpath}}/{{appname}}/docker-compose.yml
|
|
rm -f /tmp/tmp.yml
|