We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f061e13 commit 7883012Copy full SHA for 7883012
2 files changed
ansible/group_vars/alpha-link.yml
@@ -21,4 +21,5 @@ container_envs: >
21
22
container_run_opts: >
23
-h {{ name }}
24
- -d {{ container_envs }}
+ -d
25
+ {{ container_envs }}
ansible/group_vars/alpha-mongo-navi.yml
@@ -1,9 +1,13 @@
1
# database vars
2
name: mongo-navi
3
4
-db_path: "/opt/mongodb/db"
+db_path: /opt/mongodb/db
5
6
# container_kill_start settings
7
container_image: mongo
8
-container_tag: "latest"
9
-container_run_opts: "-d --name {{ name }} -p 27017:27017 -v {{ db_path }}:/data/db:rw"
+container_tag: latest
+container_run_opts: >
10
+ -h {{ name }}
11
12
+ -p 27017:27017
13
+ -v {{ db_path }}:/data/db:rw
0 commit comments