-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from Islandora-Devops/post-sprint-4
Pushing init logic into Make. Focusing on 'demo', 'local', and (not q…
- Loading branch information
Showing
18 changed files
with
8,370 additions
and
406 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: "3.7" | ||
services: | ||
# Override defaults so Mariadb is used as the database for this service. | ||
fcrepo: | ||
environment: | ||
FCREPO_PERSISTENCE_TYPE: mariadb | ||
FCREPO_DB_MYSQL_HOST: mariadb | ||
FCREPO_DB_MYSQL_PORT: 3306 | ||
FCREPO_DB_NAME: fcrepo |
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,9 @@ | ||
version: "3.7" | ||
services: | ||
# Override defaults so PostgreSQL is used as the database for this service. | ||
fcrepo: | ||
environment: | ||
FCREPO_PERSISTENCE_TYPE: postgresql | ||
FCREPO_DB_POSTGRESQL_HOST: postgresql | ||
FCREPO_DB_POSTGRESQL_PORT: 5432 | ||
FCREPO_DB_NAME: fcrepo |
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,29 @@ | ||
version: "3.7" | ||
networks: | ||
default: | ||
internal: true | ||
gateway: | ||
external: | ||
name: gateway | ||
volumes: | ||
fcrepo-data: | ||
services: | ||
fcrepo: | ||
image: ${REPOSITORY:-islandora}/fcrepo6:${TAG:-latest} | ||
environment: | ||
FCREPO_ALLOW_EXTERNAL_DRUPAL: http://${DOMAIN}/ | ||
FCREPO_TOMCAT_ADMIN_ROLES: manager-gui,fedoraAdmin | ||
FCREPO_TOMCAT_ADMIN_USER: admin | ||
FCREPO_DISABLE_SYN: ${DISABLE_SYN} | ||
volumes: | ||
- fcrepo-data:/data | ||
depends_on: | ||
- activemq | ||
networks: | ||
default: | ||
labels: | ||
# Do not expose in production. | ||
- traefik.enable=true | ||
- traefik.http.services.${COMPOSE_PROJECT_NAME-isle-dc}-fcrepo.loadbalancer.server.port=80 | ||
- traefik.http.routers.${COMPOSE_PROJECT_NAME-isle-dc}-fcrepo_http.service=${COMPOSE_PROJECT_NAME-isle-dc}-fcrepo | ||
- traefik.http.routers.${COMPOSE_PROJECT_NAME-isle-dc}-fcrepo_http.entrypoints=fcrepo |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
password |