Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wcms-d4d
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
wcms-d4d
Merge requests
!17
Adding friendly names for prompts.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adding friendly names for prompts.
feature/friendly-names-for-prompts
into
3.0.x
Overview
0
Commits
6
Pipelines
0
Changes
6
Merged
Igor Biki
requested to merge
feature/friendly-names-for-prompts
into
3.0.x
1 year ago
Overview
0
Commits
6
Pipelines
0
Changes
6
Expand
0
0
Merge request reports
Compare
3.0.x
version 6
218ee5cf
1 year ago
version 5
0e5b5daf
1 year ago
version 4
3e459652
1 year ago
version 3
df981ea7
1 year ago
version 2
7faf966c
1 year ago
version 1
afd2ca48
1 year ago
3.0.x (base)
and
latest version
latest version
8d394a7e
6 commits,
1 year ago
version 6
218ee5cf
5 commits,
1 year ago
version 5
0e5b5daf
5 commits,
1 year ago
version 4
3e459652
5 commits,
1 year ago
version 3
df981ea7
4 commits,
1 year ago
version 2
7faf966c
3 commits,
1 year ago
version 1
afd2ca48
1 commit,
1 year ago
6 files
+
78
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
{{cookiecutter.project_slug}}/images/Dockerfile
+
13
−
7
Options
{% if cookiecutter.os == "linux" or cookiecutter.os == 'win' -%}
{% if cookiecutter.php == "8.1" -%}
FROM wodby/drupal-php:8.1-dev-4.38.5
{%- if cookiecutter.php == "8.2" -%}
FROM wodby/drupal-php:8.2-dev-4.45.4
{%- elif cookiecutter.php == "8.1" -%}
FROM wodby/drupal-php:8.1-dev-4.45.4
{%- elif cookiecutter.php == "8.0" -%}
FROM wodby/drupal-php:8.0-dev-4.
38.5
FROM wodby/drupal-php:8.0-dev-4.
45.4
{%- elif cookiecutter.php == "7.4" -%}
FROM wodby/drupal-php:7.4-dev-4.38.5
{%- endif %}
{%- elif cookiecutter.os == "mac" -%}
{% if cookiecutter.php == "8.1" -%}
FROM wodby/drupal-php:8.1-dev-macos-4.38.5
{%- if cookiecutter.php == "8.2" -%}
FROM wodby/drupal-php:8.2-dev-macos-4.45.4
{%- elif cookiecutter.php == "8.1" -%}
FROM wodby/drupal-php:8.1-dev-macos-4.45.4
{%- elif cookiecutter.php == "8.0" -%}
FROM wodby/drupal-php:8.0-dev-macos-4.
38.5
FROM wodby/drupal-php:8.0-dev-macos-4.
45.4
{%- elif cookiecutter.php == "7.4" -%}
FROM wodby/drupal-php:7.4-dev-macos-4.38.5
{%- endif %}
@@ -41,13 +45,15 @@ COPY ./uw.bashrc /home/wodby/
COPY
./settings.php /home/wodby/
COPY
./settings.local.php /home/wodby/
COPY
./development.services.yml /home/wodby
RUN
source
/etc/profile.d/bash_completion.sh
#
RUN source /etc/profile.d/bash_completion.sh
# Looks like this line is duplicate of #47
RUN
echo
-e
"
\n
[[ -f ~/uw.bashrc ]] && source ~/uw.bashrc
\n
"
>>
/home/wodby/.bashrc
RUN
echo
-e
"
\n
[[ -f /etc/profile.d/bash_completion.sh ]] && source /etc/profile.d/bash_completion.sh
\n
"
>>
/home/wodby/.bashrc
RUN
sudo cp
/usr/share/zoneinfo/America/Toronto /etc/localtime
RUN
sudo
sh
-c
"echo
\"
America/Toronto
\"
>> /etc/timezone"
RUN
composer self-update
RUN
git config
--global
user.email
"{{ cookiecutter.email }}"
&&
git config
--global
user.name
"{{ cookiecutter.name }}"
# On mac, sometimes there is an error in profile rebuild, setting buffer size seems to fix it.
RUN
git config http.postBuffer 524288000
RUN
curl
-o-
https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
RUN
export
NVM_DIR
=
"
$(
[
-z
"
${
XDG_CONFIG_HOME
-
}
"
]
&&
printf
%s
"
${
HOME
}
/.nvm"
||
printf
%s
"
${
XDG_CONFIG_HOME
}
/nvm"
)
"
{% if cookiecutter.os == "mac" -%}
Loading