Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations.
pdsmoover.com
pds
atproto
migrations
moo
cow
1release:
2 #Web
3 docker buildx build \
4 --platform linux/arm64,linux/amd64 \
5 --tag fatfingers23/moover_web:latest \
6 --tag fatfingers23/moover_web:0.0.3 \
7 --file Dockerfiles/web.Dockerfile \
8 --builder desktop-linux \
9 --push .
10 # Worker
11 docker buildx build \
12 --platform linux/arm64,linux/amd64 \
13 --tag fatfingers23/moover_worker:latest \
14 --tag fatfingers23/moover_worker:0.0.4 \
15 --file Dockerfiles/worker.Dockerfile \
16 --builder desktop-linux \
17 --push .
18 #cron worker
19 docker buildx build \
20 --platform linux/arm64,linux/amd64 \
21 --tag fatfingers23/moover_cron_worker:latest \
22 --tag fatfingers23/moover_cron_worker:0.0.3 \
23 --file Dockerfiles/cron-worker.Dockerfile \
24 --push .
25
26 #web ui
27 docker buildx build \
28 --platform linux/arm64,linux/amd64 \
29 --tag fatfingers23/moover_ui:latest \
30 --tag fatfingers23/moover_ui:0.0.10 \
31 --file Dockerfiles/web-ui.Dockerfile \
32 --builder desktop-linux \
33 --push .