-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker: edit docker steps and add README file #TASK-6559
- Loading branch information
1 parent
3bed704
commit ba103a8
Showing
2 changed files
with
26 additions
and
10 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
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,17 @@ | ||
# How to update this docker | ||
|
||
If you want to update the base image https://hub.docker.com/_/httpd , it is necesary repeat this steps | ||
|
||
To customize the configuration of the httpd server, first obtain the upstream default configuration from the container: | ||
|
||
```bash | ||
docker run --rm httpd:2.4-bullseye cat /usr/local/apache2/conf/httpd.conf > ./docker/iva-app/custom-httpd.conf | ||
``` | ||
|
||
And then change custom-httpd.conf | ||
|
||
``` | ||
Listen 8080 | ||
``` | ||
|
||
|