The atproto dev environment in a Docker container.
The examples below start the service on the host port 12583, use http://localhost:12583 to access the service.
You can log in using the following credentials:
alice.test/hunter2bob.test/hunter2carla.test/hunter2
Using the Docker CLI:
docker run -it --rm --name atproto-local -p 12583:2583 ghcr.io/beeman/atproto-local
# or yarn runUsing Docker Compose:
version: '3'
services:
atproto-local:
image: ghcr.io/beeman/atproto-local
ports:
- '12583:2583'docker build . -t ghcr.io/beeman/atproto-local
# or yarn builddocker push ghcr.io/beeman/atproto-local
# or yarn push