-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GenerRRRRR-ate image files from source!
- Loading branch information
1 parent
7ef19f6
commit d7e4399
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM friendsofredaxo/redaxo:5 | ||
|
||
# copy custom setup script | ||
# will be executed within the REDAXO container once the REDAXO setup was finished | ||
COPY custom-setup.sh /usr/local/bin/ | ||
RUN chmod +x /usr/local/bin/custom-setup.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
cd /var/www/html | ||
|
||
php redaxo/bin/console install:download -q demo_fullpage 2.0.10 | ||
php redaxo/bin/console package:install -q demo_fullpage | ||
php redaxo/bin/console cache:clear -q | ||
php redaxo/bin/console demo_fullpage:install -q -y | ||
|
||
chown -R www-data:www-data ./ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tags: | ||
- fullpage |