Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations.
at main 1.1 kB view raw
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.2 \ 7 --file Dockerfiles/web.Dockerfile \ 8 --push . 9 # Worker 10 docker buildx build \ 11 --platform linux/arm64,linux/amd64 \ 12 --tag fatfingers23/moover_worker:latest \ 13 --tag fatfingers23/moover_worker:0.0.2 \ 14 --file Dockerfiles/worker.Dockerfile \ 15 --push . 16 #cron worker 17 docker buildx build \ 18 --platform linux/arm64,linux/amd64 \ 19 --tag fatfingers23/moover_cron_worker:latest \ 20 --tag fatfingers23/moover_cron_worker:0.0.2 \ 21 --file Dockerfiles/cron-worker.Dockerfile \ 22 --push . 23 24 #web ui 25 docker buildx build \ 26 --platform linux/arm64,linux/amd64 \ 27 --tag fatfingers23/moover_ui:latest \ 28 --tag fatfingers23/moover_ui:0.0.4 \ 29 --file Dockerfiles/web-ui.Dockerfile \ 30 --push .