{"id":44582187,"url":"https://github.com/anope/docker","last_synced_at":"2026-02-14T05:55:24.888Z","repository":{"id":40566607,"uuid":"85639415","full_name":"anope/docker","owner":"anope","description":"Anope Docker image","archived":false,"fork":false,"pushed_at":"2026-02-02T23:39:20.000Z","size":71,"stargazers_count":18,"open_issues_count":4,"forks_count":14,"subscribers_count":10,"default_branch":"master","last_synced_at":"2026-02-03T12:39:19.796Z","etag":null,"topics":["anope","irc","irc-services"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/anope/anope","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anope.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-03-21T00:00:53.000Z","updated_at":"2026-02-02T23:39:24.000Z","dependencies_parsed_at":"2022-07-26T20:31:57.424Z","dependency_job_id":"5f7697f9-abb9-47d7-8c13-71f0ebd89927","html_url":"https://github.com/anope/docker","commit_stats":null,"previous_names":["anope/docker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anope/docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anope%2Fdocker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anope%2Fdocker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anope%2Fdocker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anope%2Fdocker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anope","download_url":"https://codeload.github.com/anope/docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anope%2Fdocker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29438641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T05:24:35.651Z","status":"ssl_error","status_checked_at":"2026-02-14T05:24:34.830Z","response_time":53,"last_error":"SSL_read: 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":["anope","irc","irc-services"],"created_at":"2026-02-14T05:55:24.290Z","updated_at":"2026-02-14T05:55:24.877Z","avatar_url":"https://github.com/anope.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"Anope\n=====\n\nAnope is a set of IRC Services designed for flexibility and ease of use.\n\nAnope is a set of Services for IRC networks that allows users to manage their nicks and channels in a secure and efficient way, and administrators to manage their network with powerful tools.\n\n\n# How to use this image\n\nThis image is not usable as stand alone image. You need some kind of IRCd.\n\nFor example you can use [InspIRCd](https://hub.docker.com/r/inspircd/inspircd-docker) like in the [example](https://github.com/anope/docker/blob/master/examples/docker-compose.yml).\n\nThe minimal configuration looks like this:\n\n```console\n$ docker run --name anope -e \"ANOPE_UPLINK_IP=irc.example.org\" -e \"ANOPE_UPLINK_PASSWORD=password\"  anope/anope\n```\n\nYou can use your own configs in this container by mounting them to `/anope/conf/`:\n\n```console\n$ docker run --name anope -v /path/to/your/config:/anope/conf/ anope/anope\n```\n\n\n## Generated configuration\n\nThis image provides various options to configure it by environment variables.\n\nUse the following environment variables to configure your container:\n\n|Available variables      |Default value                   |Description                                 |\n|-------------------------|--------------------------------|--------------------------------------------|\n|`ANOPE_SERVICES_NAME`    |`services.localhost.net`        |Name of the services. *Important for uplink*|\n|`ANOPE_SERVICES_VHOST`   |`services.localhost.net`        |Host used by services pseudo clients        |\n|`ANOPE_UPLINK_IP`        |no default                      |DNS name or IP of the uplink host           |\n|`ANOPE_UPLINK_PORT`      |`7000`                          |Port used to connect to uplink host         |\n|`ANOPE_UPLINK_PASSWORD`  |no default                      |Password used to authenticate against uplink|\n\n\n## Database configuration\n\nThis image provides two way to configure database handling. You can use sqlite inside a volume or an external mysqldb.\n\nSQLite is used by default to prevent failing of the container, but mysql is recommended.\n\n\n### SQLite\n\nFor very small setup, development and testing SQLite setup should be enough. Simply make sure you mount a volume to `/data`.\n\n```console\n$ docker run --name anope -v \"/path/to/datastore:/data\" -e \"ANOPE_UPLINK_IP=irc.example.org\" -e \"ANOPE_UPLINK_PASSWORD=password\"  anope/anope\n```\n\n### MySQL\n\nFor a production setup MySQL is the recommended way to set this image up. Checkout the [example](https://github.com/anope/docker/blob/master/examples/docker-compose.yml) if you want to test it.\n\n|Available variables      |Default value                   |Description                                 |\n|-------------------------|--------------------------------|--------------------------------------------|\n|`ANOPE_SQL_ENGINE`       |`sqlite`                        |Set it to `mysql` to enable `mysql` backend |\n|`ANOPE_MYSQL_DB`         |`anope`                         |Database name for the data                  |\n|`ANOPE_MYSQL_HOST`       |`database`                      |Hostname of the database host or container  |\n|`ANOPE_MYSQL_PORT`       |`3306`                          |Port used to access the mysql database      |\n|`ANOPE_MYSQL_USER`       |`anope`                         |Username for the MySQL database             |\n|`ANOPE_MYSQL_PASSWORD`   |no default                      |Password for the `ANOPE_MYSQL_USER`         |\n|`ANOPE_SQL_LIVE`         |`no`                            |Enable Anope SQL-DB live feature            |\n\n\n# Updates and updating\n\nTo update your setup simply pull the newest image version from docker hub and run it.\n\n```console\n$ docker pull anope/anope\n```\n\nConsidering to update your docker setup regularly.\n\n\n# License\n\nView [license information](https://github.com/anope/anope) for the software contained in this image.\n\n\n# Supported Docker versions\n\nThis image is officially supported on Docker version 17.03.1-CE.\n\nSupport for older versions (down to 1.12) is provided on a best-effort basis.\n\nPlease see [the Docker installation documentation](https://docs.docker.com/installation/) for details on how to upgrade your Docker daemon.\n\n\n# User Feedback\n\n## Issues\n\nIf you have any problems with or questions about this image, please contact us through a [GitHub issue](https://github.com/anope/docker/issues).\n\nYou can also reach many of the project maintainers via the `#anope` IRC channel on [Teranova](http://www.teranova.net/).\n\n\n## Contributing\n\nYou are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanope%2Fdocker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanope%2Fdocker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanope%2Fdocker/lists"}