Dockerfiles for various services
Go to file
Juan Ferrer dd9d7ea4b0 debuild: Install npm 2022-07-27 12:09:41 +02:00
apache Apache with extensible config 2020-01-23 11:50:12 +01:00
certbot certbot: removed cron config file, already created by certbot 2022-03-21 13:06:23 +01:00
debuild debuild: Install npm 2022-07-27 12:09:41 +02:00
freeradius freeradius: only use eap-ttls-pap 2020-04-17 12:19:52 +02:00
jenkins-agent jenkins image removed 2022-06-20 23:25:22 +02:00
mediawiki Mediawiki 2020-01-18 13:12:31 +01:00
osticket Updated osticket and redmine images 2022-06-08 13:09:17 +02:00
phpldapadmin phpldapadmin 2020-01-19 20:47:41 +01:00
phpmyadmin phpMyAdmin style fixes 2020-01-13 20:31:43 +01:00
portainer Portainer compose updated 2022-03-21 13:13:37 +01:00
redmine Updated osticket and redmine images 2022-06-08 13:09:17 +02:00
reprepro reprepro security fix 2020-01-16 18:02:43 +01:00
LICENSE Initial commit 2020-01-07 09:22:41 +00:00
README.md Doc fixes 2022-03-21 13:12:37 +01:00

README.md

Docker

Dockerfile and compose files used as basis for service deployment.

Build and push an image

Full image name is made up of registry URL and image name.

fullImageName = [registryUrl]/[baseImageName]

Build the image with latest tag.

$ docker build -t [fullImageName] [folder]

Tag the image with version.

$ docker tag [fullImageName] [fullImageName]:[tag]

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

$ docker login [registryUrl]

Push the latest image and version tag.

$ docker push [fullImageName]
$ docker push [fullImageName]:[tag]

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

$ docker logout [registryUrl]

Test image locally

$ docker run -d --name [containerName] [registryUrl]/[imageName]:[tag]