-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 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,38 @@ | ||
# Alfresco Content Repository image | ||
|
||
## Description | ||
|
||
This Docker file is used to build an Alfresco Content Repository image. | ||
|
||
## Building the image | ||
|
||
Make sure all required artifacts are present in the build context `repository/`. | ||
iTYou can put them manually in the `repository/` folder (for example if that's a | ||
custom module of yours), or use the script `./scripts/fetch-artifacts.sh` to | ||
download them from Alfresco's Nexus. | ||
|
||
Then, you can build the image from the root of this git repository with the | ||
following command: | ||
|
||
```bash | ||
docker buildx bake repository | ||
``` | ||
|
||
## Running the image | ||
|
||
### Alfresco repository configuration | ||
|
||
All preperties you would normally add in the alfresco-global.properties file can | ||
be added n the `JAVA_OPTS` environment variable to the container. | ||
|
||
For example, to set the database URL, you can use the following environment | ||
variable: | ||
|
||
```bash | ||
docker run -e JAVA_OPTS="-Ddb.url=jdbc:postgresql://postgres.domain.tld:5432/alfresco" \ | ||
alfresco-content-repository:mytag | ||
``` | ||
|
||
> If the image is meant to be used with the Alfresco Content Services Helm | ||
> chart, you can use other [higher level means of | ||
> configuration](https://github.com/Alfresco/alfresco-helm-charts/blob/main/charts/alfresco-repository/docs/repository-properties.md). |