{"id":46094884,"url":"https://github.com/universitadellacalabria/uniticket","last_synced_at":"2026-04-07T16:03:35.456Z","repository":{"id":35587175,"uuid":"206546997","full_name":"UniversitaDellaCalabria/uniTicket","owner":"UniversitaDellaCalabria","description":"Sistema di ticketing ed helpdesk per il tracciamento e la digitalizzazione dei flussi di richieste e documentali","archived":false,"fork":false,"pushed_at":"2026-04-03T13:47:26.000Z","size":15874,"stargazers_count":27,"open_issues_count":26,"forks_count":25,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-04-03T17:43:11.512Z","etag":null,"topics":["agid","django","form-builder","helpdesk","helpdesk-ticketing","python","ticket-system"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UniversitaDellaCalabria.png","metadata":{"files":{"readme":"README.DOCKER.md","changelog":"CHANGELOG","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":"publiccode.yml","codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-09-05T11:25:39.000Z","updated_at":"2026-04-03T13:00:30.000Z","dependencies_parsed_at":"2026-04-03T15:03:57.674Z","dependency_job_id":null,"html_url":"https://github.com/UniversitaDellaCalabria/uniTicket","commit_stats":null,"previous_names":[],"tags_count":55,"template":false,"template_full_name":null,"purl":"pkg:github/UniversitaDellaCalabria/uniTicket","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UniversitaDellaCalabria%2FuniTicket","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UniversitaDellaCalabria%2FuniTicket/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UniversitaDellaCalabria%2FuniTicket/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UniversitaDellaCalabria%2FuniTicket/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UniversitaDellaCalabria","download_url":"https://codeload.github.com/UniversitaDellaCalabria/uniTicket/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UniversitaDellaCalabria%2FuniTicket/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31518667,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agid","django","form-builder","helpdesk","helpdesk-ticketing","python","ticket-system"],"created_at":"2026-03-01T18:32:00.407Z","updated_at":"2026-04-07T16:03:35.447Z","avatar_url":"https://github.com/UniversitaDellaCalabria.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nDocker Image\n------------\n\n````\n# please do not use standard distribution package\n# apt install docker docker.io docker-compose\n\n# use official docker repositories instead\napt install docker-ce docker-ce-cli containerd.io\n\ncd uniTicket\n\n# build the containers and run them\n# sudo docker-compose up\n\n# build without composer\nsudo docker image build --tag uniticket:v2 .\n\n# Run on localhost:8000\nsudo docker run -t -i -p 8000:8000 --name uniticket uniticket:v2\n````\n\nDocker Container\n----------------\n\n````\nsudo docker ps\n\n# get state and id of containers\nsudo docker container ls\n\n# get a terminal into a running container\nsudo docker container exec -it b075a1193428 /bin/bash\n\n# list changed file in the container\nsudo docker container diff b075a1193428\n# install and mofiy things with apt/vi ...\n# commit changes in a new image (don't do this is you haven't yet created a registry, see next chapter)\nsudo docker container commit ab7e1c57b31a uniticket:v1.2\n\n# backup and restore an image\nsudo docker save uniticket:v1.2 -o uniticket.v1.2.docker.img\nsudo docker image load -i uniticket.v1.2.docker.img\n\n# resource live statistics about a container\nsudo docker container stats b075a1193428\n\n# inspect container environemnt\nsudo docker container inspect b075a1193428\n\n# display running processes in the container\nsudo docker container top b075a1193428\n````\n\nDocker Swarm\n------------\nSingle node Docker swarm [health check WiP]\n\n````\n# create the swam\nsudo docker swarm init\n\n# create a registry is swarm is composed by more then one node ...\n# exec registry as an app on localhost\nsudo docker run -d -p 5000:5000 --restart=always --name registry registry:2\n# tag a local docker image by its uid in the registry\nsudo docker tag 46c4806e5d61 localhost:5000/uniticket\n# upload it\nsudo docker push localhost:5000/uniticket\n\n# create a service\nsudo docker service create --name=\"uniticket\" --publish 8000:8000/tcp --replicas 2 localhost:5000/uniticket\n\n# see status\nsudo docker service ps uniticket --no-trunc\n\n# see wich network (gateway) is associated to the service\nsudo docker network ls\nsudo docker network inspect uniticket_default\n\n# connect your browser to http://172.18.0.1:8000 ...\n\n# update a service with a new image (HA failed, 5 seconds of downtime registered here... still need to implement an health check)\nsudo docker service update --image uniticket:v1.2 --health-cmd \"curl --fail http://localhost:8000/ || exit 1\" --health-interval=5s --health-timeout=3s --health-retries=2 uniticket\n````\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funiversitadellacalabria%2Funiticket","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funiversitadellacalabria%2Funiticket","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funiversitadellacalabria%2Funiticket/lists"}