mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-07 11:11:30 +00:00
11 lines
202 B
Bash
Executable file
11 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
|