mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
1537500fcb
We're going full monorepo. Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
12 lines
202 B
Bash
Executable File
12 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
IMAGE_ID=registry.digitalocean.com/zed/zed-migrator
|
|
|
|
docker build . \
|
|
--file ./Dockerfile.migrator \
|
|
--tag $IMAGE_ID
|
|
docker push $IMAGE_ID
|
|
kubectl apply -f ./server/migrate.yml
|