Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wcms-docker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Chris Shantz
wcms-docker
Commits
701c5f9a
Commit
701c5f9a
authored
6 years ago
by
Chris Shantz
Browse files
Options
Downloads
Patches
Plain Diff
updated scripts to move files out of docroot and into the container.
parent
9dbebea5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
build-scripts/web/Dockerfile
+25
-3
25 additions, 3 deletions
build-scripts/web/Dockerfile
build-scripts/web/docker-entrypoint.sh
+9
-3
9 additions, 3 deletions
build-scripts/web/docker-entrypoint.sh
docker-compose.yml
+1
-3
1 addition, 3 deletions
docker-compose.yml
with
35 additions
and
9 deletions
build-scripts/web/Dockerfile
+
25
−
3
View file @
701c5f9a
...
...
@@ -14,14 +14,14 @@ RUN apt-get update && \
language-pack-en
\
curl
\
apt-transport-https
## Added so we can install yarn for Drupal8 theme work.
RUN
curl
-sS
https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN
echo
"deb https://dl.yarnpkg.com/debian/ stable main"
|
tee
/etc/apt/sources.list.d/yarn.list
## Added so we can installs 8.x branch of nodejs.
RUN
curl
-sL
https://deb.nodesource.com/setup_8.x | bash -
RUN
apt-key adv
--recv-keys
--keyserver
hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8
RUN
export
LANG
=
en_US.UTF-8
...
...
@@ -65,6 +65,7 @@ RUN apt-get update && \
libapache2-mod-fastcgi
\
git
\
nodejs
\
yarn
\
drush
\
ruby-sass
\
ruby-compass
\
...
...
@@ -110,6 +111,27 @@ RUN ln -sf /dev/stdout /var/log/apache2/access.log && \
COPY
docker-entrypoint.sh /usr/local/bin/
RUN
chmod
+x /usr/local/bin/docker-entrypoint.sh
# Clone PatternLab into the html directory.
RUN
git clone https://git.uwaterloo.ca/wcms/uw_wcms_pattern_lab.git /var/www/html/uw_wcms_pattern_lab
RUN
echo
"Cloned patternlab..."
# Clone Drupal
RUN
drush dl
-v
-d
drupal-8.5.5
--destination
=
"/var/www"
--drupal-project-rename
=
"drupal8"
RUN
echo
"Cloned Drupal 8...."
# Clone our WCMS profile
RUN
cd
/var/www/drupal8/profiles
&&
\
git clone https://git.uwaterloo.ca/wcms/uw_base_profile.git
&&
\
cd
/var/www/drupal8/profiles/uw_base_profile
&&
\
git checkout 8.x-3.x
# Manually set up the apache environment variables
ENV
APACHE_RUN_USER www-data
ENV
APACHE_RUN_GROUP www-data
ENV
APACHE_LOG_DIR /var/log/apache2
ENV
APACHE_LOCK_DIR /var/lock/apache2
ENV
APACHE_PID_FILE /var/run/apache2.pid
# Expose the default Apache port.
EXPOSE
80
EXPOSE
443
...
...
@@ -118,4 +140,4 @@ EXPOSE 443
ENTRYPOINT
["docker-entrypoint.sh"]
# If no command is passed to the container, start Apache by default.
CMD
["apachectl", "-D", "FOREGROUND"]
\ No newline at end of file
CMD
["apachectl", "-D", "FOREGROUND"]
This diff is collapsed.
Click to expand it.
build-scripts/web/docker-entrypoint.sh
+
9
−
3
View file @
701c5f9a
...
...
@@ -11,20 +11,26 @@ if [ -f /run/apache2/apache2.pid ]; then
rm
/run/apache2/apache2.pid
fi
## Setup Drupal8 and Patternlab.
#cd /var/www/drupal8/profiles/uw_base_profile
#apt-get install composer
#composer config --global github-oauth.github.com 5e7a5890e9935f4a03a3785e11816851430e930c
#./rebuild.sh -y > tmp/profile-build.log
# Allow the Apache docroot to be overridden.
APACHE_DOCROOT_DIR
=
"
${
APACHE_DOCROOT_DIR
:-
/var/www/
html
}
"
APACHE_DOCROOT_DIR
=
"
${
APACHE_DOCROOT_DIR
:-
/var/www/
drupal8
}
"
if
[
-n
"
$APACHE_DOCROOT_DIR
"
]
;
then
sed
-i
's@^\s*DocumentRoot.*@'
" DocumentRoot
${
APACHE_DOCROOT_DIR
}
"
'@'
/etc/apache2/sites-available/000-default.conf
fi
# Allow the site name to be overriden.
APACHE_SITE_NAME
=
"
${
APACHE_SITE_NAME
:
-
docker
.test
}
"
APACHE_SITE_NAME
=
"
${
APACHE_SITE_NAME
:docker
8
}
"
if
[
-n
"
$APACHE_SITE_NAME
"
]
;
then
sed
-i
's@^\s*ServerName.*@'
" ServerName
${
APACHE_SITE_NAME
}
"
'@'
/etc/apache2/sites-available/000-default.conf
fi
# Allow for site aliases to be provided.
APACHE_SITE_ALIAS
=
"
${
APACHE_SITE_ALIAS
:
-
docke
r
.localhost
}
"
APACHE_SITE_ALIAS
=
"
${
APACHE_SITE_ALIAS
:docke
8
.localhost
}
"
if
[
-n
"
$APACHE_SITE_ALIAS
"
]
;
then
sed
-i
's@^\s*ServerAlias.*@'
" ServerAlias
${
APACHE_SITE_ALIAS
}
"
'@'
/etc/apache2/sites-available/000-default.conf
fi
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
1
−
3
View file @
701c5f9a
...
...
@@ -2,9 +2,7 @@ version: '3'
services
:
web
:
build
:
./build-scripts/web
volumes
:
-
./docroot/drupal:/var/www/drupal
-
./docroot/uwpatternlab:/var/www/html/uw_wcms_pattern_lab
ports
:
-
"
80:80"
-
"
443:443"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment