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
/hunter2
bob.test
/hunter2
carla.test
/hunter2
Using the Docker CLI:
docker run -it --rm --name atproto-local -p 12583:2583 ghcr.io/beeman/atproto-local
# or yarn run
Using 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 build
docker push ghcr.io/beeman/atproto-local
# or yarn push