{"id":21942898,"url":"https://github.com/qbituniverse/ai-titanic","last_synced_at":"2026-05-07T04:33:11.732Z","repository":{"id":255578814,"uuid":"852048349","full_name":"qbituniverse/ai-titanic","owner":"qbituniverse","description":"Titanic AI model trained in R code running in Docker.","archived":false,"fork":false,"pushed_at":"2024-09-12T20:16:36.000Z","size":2631,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-22T15:49:02.430Z","etag":null,"topics":["ai","docker","r-code","r-studio"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":false,"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/qbituniverse.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-04T06:15:48.000Z","updated_at":"2024-09-12T20:16:37.000Z","dependencies_parsed_at":"2024-09-06T05:24:33.474Z","dependency_job_id":"bba97fda-16e5-4e81-ae3d-8f839b8e386a","html_url":"https://github.com/qbituniverse/ai-titanic","commit_stats":null,"previous_names":["qbituniverse/ai-titanic"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/qbituniverse/ai-titanic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbituniverse%2Fai-titanic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbituniverse%2Fai-titanic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbituniverse%2Fai-titanic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbituniverse%2Fai-titanic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qbituniverse","download_url":"https://codeload.github.com/qbituniverse/ai-titanic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qbituniverse%2Fai-titanic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001778,"owners_count":26083173,"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":["ai","docker","r-code","r-studio"],"created_at":"2024-11-29T03:27:09.190Z","updated_at":"2025-10-09T16:52:27.372Z","avatar_url":"https://github.com/qbituniverse.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ai-titanic\n\n**ai-titanic** is built entirely on container technology with [Docker](https://www.docker.com). To be able to run the code from this repository, all you need on your local workstation is [Docker Installation](https://docs.docker.com/get-docker/).\n\n|Documentation|Packages|Showcase|\n|-----|-----|-----|\n|[Project Overview](/docs/overview.md)|[DockerHub Api Image](https://hub.docker.com/repository/docker/qbituniverse/ai-titanic-api)|[Gallery](/docs/gallery.md)|\n|[Project Description](/docs/description.md)|[DockerHub Webapp Image](https://hub.docker.com/repository/docker/qbituniverse/ai-titanic-webapp)||\n|[R Model Code Overview](/docs/model.md)|||\n|[C# Webapi Code Overview](/docs/webapi.md)|||\n|[C# Webapp Code Overview](/docs/webapp.md)|||\n|[Development Process](/docs/development.md)|||\n|[Deployment Process](/docs/deployment.md)|||\n\n### Try ai-titanic Now\n\n#### Option 1: Docker Compose\n\nCopy this YAML into a new **docker-compose.yaml** file on your file system.\n\n```yaml\nversion: '3'\nservices:\n  api:\n    image: qbituniverse/ai-titanic-api:latest\n    container_name: ai-titanic-api\n    ports:\n      - 8011:8000\n    tty: true\n    networks:\n      - ai-titanic-bridge\n\n  webapp:\n    image: qbituniverse/ai-titanic-webapp:latest\n    depends_on:\n      - api\n    container_name: ai-titanic-webapp\n    environment:\n      - ASPNETCORE_ENVIRONMENT=Development\n      - WebApp__AiApi__BaseUri=http://ai-titanic-api:8000\n    ports:\n      - 8010:8080\n    tty: true\n    networks:\n      - ai-titanic-bridge\n\nnetworks:\n  ai-titanic-bridge:\n    driver: bridge\n```\n\nThen use the commands below to start **ai-titanic** up and use it.\n\n```bash\n# start up ai-titanic\ndocker compose up\n\n# ai-titanic Webapp\nstart http://localhost:8010\n\n# ai-titanic Api docs\nstart http://localhost:8011/__docs__/\n\n# finish and clean up ai-titanic\ndocker compose down\n```\n\n#### Option 2: Docker Run\n\nAlternatively, you can run **ai-titanic** without compose, just simply use docker commands below.\n\n```bash\n# create network\ndocker network create ai-titanic-bridge\n\n# start up ai-titanic containers\ndocker run --name ai-titanic-api -d -p 8011:8000 \\\n--network=ai-titanic-bridge qbituniverse/ai-titanic-api:latest\n\ndocker run --name ai-titanic-webapp -d -p 8010:8080 \\\n-e ASPNETCORE_ENVIRONMENT=Development \\\n-e WebApp__AiApi__BaseUri=http://ai-titanic-api:8000 \\\n--network=ai-titanic-bridge qbituniverse/ai-titanic-webapp:latest\n\n# ai-titanic Webapp\nstart http://localhost:8010\n\n# ai-titanic Api docs\nstart http://localhost:8011/__docs__/\n\n# finish and clean up ai-titanic\ndocker rm -fv ai-titanic-api\ndocker volume rm -f ai-titanic-api\ndocker rm -fv ai-titanic-webapp\ndocker volume rm -f ai-titanic-webapp\ndocker network rm ai-titanic-bridge\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqbituniverse%2Fai-titanic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqbituniverse%2Fai-titanic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqbituniverse%2Fai-titanic/lists"}