{"id":24698950,"url":"https://github.com/artioml/adct","last_synced_at":"2025-10-09T07:32:22.946Z","repository":{"id":202348077,"uuid":"63194158","full_name":"ArtiomL/adct","owner":"ArtiomL","description":":microscope: A small web app container for testing Application Delivery Controllers in lab environments","archived":false,"fork":false,"pushed_at":"2019-03-14T19:05:49.000Z","size":2361,"stargazers_count":4,"open_issues_count":17,"forks_count":9,"subscribers_count":3,"default_branch":"develop","last_synced_at":"2025-04-02T21:42:19.857Z","etag":null,"topics":["apache","container","docker","node-js","php","web-app","websocket"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/artioml/adct/","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ArtiomL.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2016-07-12T21:39:50.000Z","updated_at":"2019-03-14T19:11:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"22a7ec6d-ca86-44f6-a3a5-36766471f266","html_url":"https://github.com/ArtiomL/adct","commit_stats":null,"previous_names":["artioml/adct"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ArtiomL/adct","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtiomL%2Fadct","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtiomL%2Fadct/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtiomL%2Fadct/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtiomL%2Fadct/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArtiomL","download_url":"https://codeload.github.com/ArtiomL/adct/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArtiomL%2Fadct/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000960,"owners_count":26082973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["apache","container","docker","node-js","php","web-app","websocket"],"created_at":"2025-01-27T04:34:56.764Z","updated_at":"2025-10-09T07:32:22.649Z","avatar_url":"https://github.com/ArtiomL.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cimg align=\"center\" src=\"img/sno.svg\" width=\"70\"\u003e\u0026nbsp;\u0026nbsp;adct\n[![Build Status](https://img.shields.io/travis/ArtiomL/adct.svg)](https://travis-ci.org/ArtiomL/adct)\n[![Releases](https://img.shields.io/github/release/ArtiomL/adct.svg)](https://github.com/ArtiomL/adct/releases)\n[![Commits](https://img.shields.io/github/commits-since/ArtiomL/adct/v1.0.5.svg?label=commits%20since)](https://github.com/ArtiomL/adct/commits/master)\n[![Maintenance](https://img.shields.io/maintenance/yes/2019.svg)](https://github.com/ArtiomL/adct/graphs/code-frequency)\n[![Issues](https://img.shields.io/github/issues/ArtiomL/adct.svg)](https://github.com/ArtiomL/adct/issues)\n[![Docker Hub](https://img.shields.io/docker/pulls/artioml/adct.svg)](https://hub.docker.com/r/artioml/adct/)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)\n\n\u0026nbsp;\u0026nbsp;\n\n## Table of Contents\n- [Description](#description)\n- [Installation](#installation)\n\t- [Main Site](#main-site)\n\t- [WebSocket Echo](#websocket-echo)\n- [Service Tree](#service-tree)\n- [Customization](#customization)\n- [License](LICENSE)\n\n\u0026nbsp;\u0026nbsp;\n\n## Description\n\nA small web app container for testing Application Delivery Controllers in lab environments.\n\n\u0026nbsp;\u0026nbsp;\n\n## Installation\n\n#### Main Site\n```shell\ndocker run -dit -p 80:8080 -p 443:8443 artioml/adct\n```\n\nAdd a custom node name to the page title (supports HTML \"Injection\"):\n\n```shell\ndocker run -dit -p 80:8080 -p 443:8443 -e NODE='\u003cb\u003eNode1\u003c/b\u003e' artioml/adct\n```\n\n#### WebSocket Echo (`/ws/`)\n```shell\ndocker run -dit -p 4433:4433 artioml/adct:ws\n```\n\n\u0026nbsp;\u0026nbsp;\n\n## Service Tree\n```\n/\n├── secure/\n│   └── Basic Authentication (user:user)\n├── uri[0-9]*/\n│   └── Alias for DocumentRoot (/var/www/adct/)\n└── ws/\n    └── WebSocket Echo\n```\n\n\u0026nbsp;\u0026nbsp;\n\n## Customization\n\nAdd custom CSS or JavaScript by mounting the `css/custom.css` and/or `js/custom.js` file(s) into the container instance. For example:\n\n```\ndocker run -dit -p 80:8080 -p 443:8443 \\\n\t-v /path/to/your.css:/var/www/adct/css/custom.css \\\n\t-v /path/to/your.js:/var/www/adct/js/custom.js \\\n\tartioml/adct\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartioml%2Fadct","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fartioml%2Fadct","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fartioml%2Fadct/lists"}