{"id":21901472,"url":"https://github.com/gguridi/moto-server","last_synced_at":"2026-04-14T03:32:49.416Z","repository":{"id":128538354,"uuid":"127342804","full_name":"gguridi/moto-server","owner":"gguridi","description":"Server to emulate AWS services through moto...","archived":false,"fork":false,"pushed_at":"2018-03-31T22:48:24.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-17T06:07:27.707Z","etag":null,"topics":["docker-image","moto","moto-server"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/gguridi.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,"zenodo":null}},"created_at":"2018-03-29T20:15:41.000Z","updated_at":"2020-09-17T23:53:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"bb84a173-bf92-4c6d-bc3d-89adfd1995f3","html_url":"https://github.com/gguridi/moto-server","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gguridi/moto-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gguridi%2Fmoto-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gguridi%2Fmoto-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gguridi%2Fmoto-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gguridi%2Fmoto-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gguridi","download_url":"https://codeload.github.com/gguridi/moto-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gguridi%2Fmoto-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31781292,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"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":["docker-image","moto","moto-server"],"created_at":"2024-11-28T15:13:42.852Z","updated_at":"2026-04-14T03:32:49.411Z","avatar_url":"https://github.com/gguridi.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Moto Dockerfile\n\nThis container uses the [moto](https://github.com/spulec/moto) library to seamlessly emulate an AWS environment.\n\nIt runs the [moto standalone server](https://github.com/spulec/moto#stand-alone-server-mode) to create the service, adding extra functionality on the top of it.\n\nThe image is based on alpine so it aims to have low impact in your system.\n\n## Usage\n\n### Install\n\nPull `gguridi/moto` from the Docker repository:\n\n    docker pull gguridi/moto\n\n### Run\n\nEach image can be used with one service at a time. To run multiple AWS services we will need to run several docker instances passing to each of them which service we want to enable.\n\nThe basic image run would be:\n\n    docker run -p local:port gguridi/moto service:port\n\nFor instance, if we want to run a S3 service (the list of services can be obtained from the moto repository):\n\n    docker run -p 4000:5000 gguridi/moto s3:5000\n\nBy default the container will run in the foreground, returning the logs of what the server is receiving. To run it in the background we must specify the detached option:\n\n    docker run -p 4000:5000 -d gguridi/moto s3:5000\n\nIt's possible also to run several services in the same docker instance.\n\n    docker run -p X:X -p Y:Y gguridi/moto s3:X ec2:Y\n\nFor further information about the services moto server supports, check the [official documentation](https://github.com/spulec/moto).\n\n#### S3\n\nIf we want to synchronise a local folder to have it available automatically as S3 content, we can just map an internal container folder and the scripts will take care of it.\n\n    docker run -p 4000:5000 -v /source-dir:/opt/moto/s3 gguridi/moto s3:5000\n\nThe container will automatically create the direct subfolder as bucket, and the rest of the path as prefix/file inside the s3 service.\n\nFiles inside the s3 folder will automatically be added/updated/removed from the s3 service. Currently the files must change from inside the docker container for inotify to receive the event. Changes made in the host are not propagated inside the docker container (or at least inotify doesn't receive them).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgguridi%2Fmoto-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgguridi%2Fmoto-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgguridi%2Fmoto-server/lists"}