Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ansible-roles
docker
Commits
50680b04
Commit
50680b04
authored
5 years ago
by
Илья Крылов
Browse files
Options
Download
Email Patches
Plain Diff
1.0.4: Docker extra files
parent
baed7ed1
master
33735-file-export-illegal-columns-offset
33779-add-month-day-to-timetable
34009-disappear-parsed-prices
34040-add-has-auto-uploading-to-kpi-report
34111-smart-search-mathing-mech-by-file
34157-34243-limits-corrections
34180-34290-fix-month-view
34248-add-parent-products-after-loading-nomenclature
34297-root-categories-in-horadric-cube-export
34489-2-break-array-in-after-import-from-file-method
34489-4-horadric-cube-sql-request-error
34489-6-off-tmp-abnormal-prices-in-new-log
34505-schedule-make-faster-adding-items
34514-fix-importing-data-from-csv-file
34531-add-import-to-manual-analysis
34616-prevent-real-deletion-from-db
34631-dont-work-role-deletion
34654-change-removal-from-physical-to-logical
34684-add-sort-by-project-in-front-page
34698-add-sort-by-competitor-in-report-kpi
34702-34819-fix-error-504
34702-34844-kpi-by-matrix
34704-matrix-column-in-report-kpi-by-matrix
34749-brand-filter
34768-set-match-json-decode-log-error
34896-add-new-entities-to-remove-old-data-task
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
defaults/main.yml
+1
-0
defaults/main.yml
tasks/main.yml
+10
-0
tasks/main.yml
with
11 additions
and
0 deletions
+11
-0
defaults/main.yml
View file @
50680b04
...
...
@@ -6,3 +6,4 @@ docker_compose_env: []
# - { key: 'RABBITMQ_DEFAULT_USER', value: 'guest' }
# - { key: 'RABBITMQ_DEFAULT_USER', value: 'guest' }
docker_compose_env_target_file
:
'
.env'
docker_compose_extra_files
:
[]
This diff is collapsed.
Click to expand it.
tasks/main.yml
View file @
50680b04
...
...
@@ -44,6 +44,16 @@
group
:
'
{{
docker_compose_user_group
}}'
mode
:
'
0644'
-
name
:
Copy extra files
copy
:
src
:
'
{{
item.src
}}'
dest
:
'
{{
item.dest
}}'
owner
:
'
{{
item.owner
|
default(docker_compose_user)
}}'
group
:
'
{{
item.group
|
default(docker_compose_user_group)
}}'
mode
:
'
{{
item.mode
|
default(0644)'
loop
:
'
{{
docker_compose_extra_files
}}'
when
:
docker_compose_extra_files | default([],
true
) | length >
0
-
name
:
Build and start containers
become
:
yes
docker_compose
:
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help