Dockerfiles for various services
Go to file
Guillermo Bonet 7fc6012476 Merge pull request 'feat: refs #6459 Redmine upgrade to 5.1.2' (!1) from 6459-redmineUpdate into master
Reviewed-on: #1
2024-03-15 09:04:48 +00:00
authelia Update Jenkins agent 2023-10-17 12:50:32 +02:00
certbot certbot updated 2023-09-22 22:37:39 +02:00
debuild refs #5879 debuild: Node upgraded to v20 2023-06-20 17:27:58 +02:00
freeradius freeradius: only use eap-ttls-pap 2020-04-17 12:19:52 +02:00
httpd Added shinobi & httpd 2024-01-08 21:48:00 +01:00
jenkins-agent Update Jenkins agent 2023-10-17 12:50:32 +02:00
mediawiki refs #3700 Upgrade Mediawiki to v1.39 2023-06-29 20:06:08 +02:00
mrbs Update Jenkins agent 2023-10-17 12:50:32 +02:00
osticket feat: refs #7034 osTicket upgrade to 1.17.5 2024-03-14 08:36:20 +01:00
phpldapadmin refs #5975 MRBS: PVC removed 2023-07-17 15:03:01 +02:00
phpmyadmin phpMyAdmin style fixes 2020-01-13 20:31:43 +01:00
portainer refs #3723 Portainer compose updated with mem limits and version 2.17.2 2023-03-06 11:01:37 +01:00
redmine feat: refs #6459 Rollback plugin issue_dynamic_edit to 0.7.2 2024-03-15 09:17:43 +01:00
reprepro reprepro security fix 2020-01-16 18:02:43 +01:00
semaphore commit_13122022 2022-12-13 13:47:08 +01:00
shinobi Added shinobi & httpd 2024-01-08 21:48:00 +01:00
.gitignore Added libnss3 2022-11-14 10:35:36 +01:00
LICENSE Initial commit 2020-01-07 09:22:41 +00:00
README.md refs #5659 osTicket version 1.17.4 2023-06-26 13:27:07 +02:00

README.md

Docker

Dockerfile and compose files used as basis for service deployment.

Prepare environment

registry=[registryUrl]
image=[imageName]
tag=[versionTag]

Build image

Build the image with latest tag.

docker build -t $registry/$image $image

Tag the image with version.

docker tag $registry/$image $registry/$image:$tag

Test image locally

docker run --name test $registry/$image:$tag

Push image

Login into docker registry (If it's the first time or you are not saving credentials).

docker login $registry

Push the latest image and version tag.

docker push $registry/$image
docker push $registry/$image:$tag

Logout from docker registry (If you don't logout, credentials will remain saved in your home directory).

docker logout $registry