{"id":17648035,"url":"https://github.com/morazow/docker-outline-shadowsocks-server","last_synced_at":"2025-05-07T05:49:24.313Z","repository":{"id":145613951,"uuid":"338907091","full_name":"morazow/docker-outline-shadowsocks-server","owner":"morazow","description":"🐋 Outline Shadowsocks Server docker based on Distroless static image","archived":false,"fork":false,"pushed_at":"2021-05-14T21:55:53.000Z","size":6,"stargazers_count":9,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-07T05:49:17.957Z","etag":null,"topics":["distroless","docker","shadowsocks"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/morazow/outline-shadowsocks-server","language":"Dockerfile","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/morazow.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":"2021-02-14T21:36:24.000Z","updated_at":"2024-01-19T19:04:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"936518ee-0c37-452c-a998-16f342c5b66a","html_url":"https://github.com/morazow/docker-outline-shadowsocks-server","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morazow%2Fdocker-outline-shadowsocks-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morazow%2Fdocker-outline-shadowsocks-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morazow%2Fdocker-outline-shadowsocks-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morazow%2Fdocker-outline-shadowsocks-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/morazow","download_url":"https://codeload.github.com/morazow/docker-outline-shadowsocks-server/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252823693,"owners_count":21809709,"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":["distroless","docker","shadowsocks"],"created_at":"2024-10-23T11:15:58.462Z","updated_at":"2025-05-07T05:49:24.263Z","avatar_url":"https://github.com/morazow.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Outline Shadowsocks Server \u0026#x1F433;\n\n[![Docker Image Version][version-badge]][hub-link]\n[![Docker Image Size][size-badge]][hub-link]\n[![Docker Pulls][pulls-badge]][hub-link]\n\nThe standalone [outline-ss-server][outline-ss-server] that runs inside the\n[Google Distroless][distroless] static image.\n\nThe `outline-ss-server` is a Shadowsocks implementation used by the [Outline\nServer][outline-server].\n\n## Features\n\n- Supports multiple users on a single port\n- Supports multiple ports\n- Supports whitebox monitoring using [Prometheus][prometheus]\n- Prohibits non [AEAD ciphers][aead-ciphers]\n\n## Usage\n\n### Docker Compose\n\nCreate a `docker-compose.yml` file:\n\n```yml\nversion: '3.8'\n\nservices:\n  outline-shadowsocks-server:\n    image: morazow/outline-shadowsocks-server:latest\n    container_name: outline-shadowsocks-server\n    ports:\n      - \"8081:8081/tcp\"\n      - \"8081:8081/udp\"\n    volumes:\n      - \"./config.yml:/outline/config.yml:ro\"\n    restart: unless-stopped\n```\n\n### Configuration\n\nAn example configuration `config.yml` file:\n\n```yml\nkeys:\n  - id: user01\n    port: 8081\n    cipher: chacha20-ietf-poly1305\n    secret: secret1\n\n  - id: user02\n    port: 8081\n    cipher: chacha20-ietf-poly1305\n    secret: secret2\n```\n\nTo run the container:\n\n```sh\ndocker-compose up -d\ndocker-compose logs -f\n```\n\n### Upgrade\n\nTo upgrade the image and recreate the container:\n\n```sh\ndocker-compose pull\ndocker-compose up -d\n```\n\n## Building\n\nBuild with a version:\n\n```sh\nVERSION=\"1.3.5\" \u0026\u0026 \\\ndocker build --build-arg OUTLINE_SHADOWSOCKS_VERSION=\"$VERSION\" \\\n    -f Dockerfile \\\n    -t \"morazow/outline-shadowsocks-server:$VERSION\" \\\n    .\n```\n\n## License\n\n[MIT License](LICENSE)\n\n[distroless]: https://github.com/GoogleContainerTools/distroless\n[outline-server]: https://github.com/Jigsaw-Code/outline-server\n[outline-ss-server]: https://github.com/Jigsaw-Code/outline-ss-server\n[prometheus]: https://prometheus.io/\n[aead-ciphers]: https://shadowsocks.org/en/wiki/AEAD-Ciphers.html\n[pulls-badge]: https://img.shields.io/docker/pulls/morazow/outline-shadowsocks-server.svg?style=flat-square\u0026logo=docker\n[size-badge]: https://img.shields.io/docker/image-size/morazow/outline-shadowsocks-server.svg?style=flat-square\u0026logo=docker\n[version-badge]: https://img.shields.io/docker/v/morazow/outline-shadowsocks-server.svg?style=flat-square\u0026logo=docker\n[hub-link]: https://hub.docker.com/r/morazow/outline-shadowsocks-server\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorazow%2Fdocker-outline-shadowsocks-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorazow%2Fdocker-outline-shadowsocks-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorazow%2Fdocker-outline-shadowsocks-server/lists"}