atproto-local

The atproto dev environment in a Docker container.

MIT License

Stars
6

atproto-local

The atproto dev environment in a Docker container.

Usage

Run the 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'

Build the container

docker build . -t ghcr.io/beeman/atproto-local
# or yarn build

Push the container

docker push ghcr.io/beeman/atproto-local
# or yarn push