{"id":17209230,"url":"https://github.com/dixudx/trac-docker","last_synced_at":"2025-04-11T15:41:15.966Z","repository":{"id":73264659,"uuid":"66611658","full_name":"dixudx/trac-docker","owner":"dixudx","description":"Trac(http://trac.edgewall.org/) Dockerfile","archived":false,"fork":false,"pushed_at":"2024-11-11T03:24:45.000Z","size":11,"stargazers_count":15,"open_issues_count":3,"forks_count":21,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-25T11:49:27.768Z","etag":null,"topics":["dockerfile","trac"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dixudx.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":"2016-08-26T02:58:01.000Z","updated_at":"2024-11-11T07:40:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"ef0f39a0-937f-4cb9-bdac-2e06ea654273","html_url":"https://github.com/dixudx/trac-docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dixudx%2Ftrac-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dixudx%2Ftrac-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dixudx%2Ftrac-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dixudx%2Ftrac-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dixudx","download_url":"https://codeload.github.com/dixudx/trac-docker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248432951,"owners_count":21102476,"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","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":["dockerfile","trac"],"created_at":"2024-10-15T02:51:05.760Z","updated_at":"2025-04-11T15:41:15.939Z","avatar_url":"https://github.com/dixudx.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# trac-docker\n\n[![](https://images.microbadger.com/badges/version/stephenhsu/trac.svg)](https://hub.docker.com/r/stephenhsu/trac/ \"Get your own version badge on microbadger.com\")\n[![](https://images.microbadger.com/badges/image/stephenhsu/trac.svg)](https://hub.docker.com/r/stephenhsu/trac/)\n[![Docker Hub](http://img.shields.io/docker/pulls/stephenhsu/trac.svg)](https://hub.docker.com/r/stephenhsu/trac/)\n\nThis repo is used to host a bunldle to create a docker container (based on\nUbuntu Xenial) running [Trac](http://trac.edgewall.org),\nwhich is an enhanced wiki and issue tracking system for software development\nprojects. Trac uses a minimalistic approach to web-based software project\nmanagement. It helps developers write great software while staying out of\nthe way. Trac should impose as little as possible on a team's established\ndevelopment process and policies.\n\n\n# How to get the image\n\n* Build it using Dockerfile\n\n    ```ssh\n    $ git clone https://github.com/dixudx/trac-docker\n    $ cd trac-docker\n    $ docker build -t trac ./\n    ```\n\n* just pull it from Dockerhub\n\n    ```\n    $ docker pull stephenhsu/trac\n    ```\n\n\n# How to run the container\n\n## Quick Start\n\nJust run\n\n```\n$ docker run -d -p 8123:8123 --name my_trac stephenhsu/trac\n```\n\nAfter several seconds, you can visit the web page at\n\u003chttp://localhost:8123\u003e\n\n## Environment Variables Explanations\n\nMost of below\n\n* `TRAC_ADMIN_NAME` (default is `trac_admin`):\n\n    the admin username of Trac\n\n* `TRAC_ADMIN_PASSWD` (default is `passw0rd`):\n\n    the admin password of Trac\n\n* `TRAC_PROJECT_NAME` (default is `trac_project`):\n\n    the Trac project name\n\n* `TRAC_DIR` (default is `/var/local/trac`):\n\n    This directory stores all the data and configurations. You can bind a volume\n    when starting a container.\n\n* `TRAC_INI` (default is `$TRAC_DIR/conf/trac.ini`):\n\n    This ini file will be automatically generated by the container.\n    Also you can made some customizations based on your needs.\n\n* `DB_LINK` (default is `sqlite:db/trac.db`):\n\n    A database system is needed. The database can be either `SQLite`,\n    `PostgreSQL` or `MySQL`.\n\n    Please refer \u003chttps://trac.edgewall.org/wiki/TracInstall#MandatoryDependencies\u003e\n    for more detailed infomation.\n\n    * For the PostgreSQL database\n\n        See [DatabaseBackend](https://trac.edgewall.org/intertrac/DatabaseBackend%23Postgresql) for details.\n\n    * For the MySQL database\n\n        Trac works well with MySQL.\n        Given the caveats and known issues surrounding MySQL,\n        read the [MySqlDb](https://trac.edgewall.org/intertrac/MySqlDb) page\n        before creating the database.\n\n\n## Wants More Secure\n\nThis container image is powered by [Apache Web Server](https://httpd.apache.org/).\nYou can make your own customizations (such as adding TLS etc.) in\n`./trac.conf` and map to `/etc/apache2/sites-available/trac.conf` when\nstarting a container.\n\n```\n$ docker run -d -p 8123:8123 -v ./trac.conf:/etc/apache2/sites-available/trac.conf --name my_trac stephenhsu/trac\n```\n\n# Reference\n\n* [Trac Official Doc](https://trac.edgewall.org/wiki/TracGuide)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdixudx%2Ftrac-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdixudx%2Ftrac-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdixudx%2Ftrac-docker/lists"}