-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated PHP to 8.1 - Updated Code Server to 4.8.3 - Updated Matomo to 4.12.3 - Removed the demo image as it is unmaintained and doesn't support php 8.1 - Created test image for testing changes to isle-buildkit (includes sample content) - Added Automated integration tests for a full site
- Loading branch information
1 parent
4b412c7
commit 179c36c
Showing
326 changed files
with
61,292 additions
and
4,019 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,37 @@ | ||
# Provide environment variables for configuring docker-compose, *not* the | ||
# containers themselves. | ||
# | ||
# Note that this is simple string assignment, quotes should *not* be used. | ||
# Multiple lines or commands, or bash syntax will not work. | ||
# | ||
# References: | ||
# - https://docs.docker.com/compose/env-file/ | ||
# - https://docs.docker.com/compose/reference/envvars/ | ||
COMPOSE_PROJECT_NAME=isle-buildkit | ||
|
||
# Use buildkit when building images. | ||
COMPOSE_DOCKER_CLI_BUILD=1 | ||
DOCKER_BUILDKIT=1 | ||
|
||
# Required for traefik on OSX (inconsistent behavior). | ||
DOCKER_CLIENT_TIMEOUT=120 | ||
COMPOSE_HTTP_TIMEOUT=120 | ||
|
||
# The consistency requirements for bind mounts; one of: | ||
# | ||
# - consistent: Full consistency. The container runtime and the host maintain an identical view of the mount at all times. | ||
# - cached: The host's view of the mount is authoritative. There may be delays before updates made on the host are visible within a container. | ||
# - delegated: The container runtime's view of the mount is authoritative. There may be delays before updates made in a container are visible on the host. | ||
# | ||
# Note that using 'consistent' can be very slow. | ||
CONSISTENCY=delegated | ||
|
||
# The Docker image repository, to use for isle-buildkit images. | ||
# | ||
# "local" is produced by building isle-buildkit manually | ||
# "islandora" is pulled from DockerHub. | ||
# | ||
REPOSITORY=local | ||
|
||
# The version of the isle-buildkit images to use. | ||
TAG=latest |
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 |
---|---|---|
|
@@ -3,5 +3,4 @@ | |
/build | ||
scratch | ||
scratch.md | ||
volumes | ||
/docker-compose.yml | ||
volumes |
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
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
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/with-contenv bash | ||
#!/command/with-contenv bash | ||
set -e | ||
|
||
# When bind mounting we need to ensure that we | ||
|
Empty file.
Empty file.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
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 @@ | ||
oneshot |
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 @@ | ||
/etc/s6-overlay/scripts/cacert-import.sh |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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 @@ | ||
oneshot |
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 @@ | ||
/etc/s6-overlay/scripts/confd-onetime.sh |
Empty file.
Empty file.
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,7 @@ | ||
#!/command/with-contenv bash | ||
set -e | ||
|
||
# Only run the service if explicitly told to do so. | ||
if [[ "${CONFD_ENABLE_SERVICE}" == "true" ]]; then | ||
source /usr/local/share/s6/finish | ||
fi |
6 changes: 4 additions & 2 deletions
6
base/rootfs/etc/services.d/confd/run → base/rootfs/etc/s6-overlay/s6-rc.d/confd/run
100644 → 100755
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
#!/usr/bin/with-contenv bash | ||
#!/command/with-contenv bash | ||
set -e | ||
|
||
# Only run the service if explicitly told to do so. | ||
if [[ "${CONFD_ENABLE_SERVICE}" == "true" ]]; then | ||
exec confd-render-templates.sh -- -interval ${CONFD_POLLING_INTERVAL} | ||
fi | ||
else | ||
exec s6-svc -Od . | ||
fi |
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 @@ | ||
longrun |
Empty file.
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 @@ | ||
oneshot |
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 @@ | ||
/etc/s6-overlay/scripts/container-environment.sh |
Empty file.
Empty file.
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 @@ | ||
oneshot |
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 @@ | ||
/etc/s6-overlay/scripts/database-defaults.sh |
Empty file.
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 @@ | ||
oneshot |
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
Empty file.
Empty file.
Oops, something went wrong.