]> Untitled Git - lemmy.git/blob - docker/prod/deploy.sh
94287126c60b97da34e3a8e8d53e4e5377c511d1
[lemmy.git] / docker / prod / deploy.sh
1 #!/bin/sh
2 set -e
3 git checkout main
4
5 # Creating the new tag
6 new_tag="$1"
7 third_semver=$(echo $new_tag | cut -d "." -f 3)
8
9 # Setting the version on the front end
10 cd ../../
11 # Setting the version on the backend
12 echo "pub const VERSION: &str = \"$new_tag\";" > "src/version.rs"
13 git add "src/version.rs"
14 # Setting the version for Ansible
15 echo $new_tag > "ansible/VERSION"
16 git add "ansible/VERSION"
17
18 cd docker/prod || exit
19
20 # Changing the docker-compose prod
21 sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../prod/docker-compose.yml
22 sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../../ansible/templates/docker-compose.yml
23 sed -i "s/dessalines\/lemmy:v.*/dessalines\/lemmy:$new_tag/" ../travis/docker_push.sh
24 git add ../prod/docker-compose.yml
25 git add ../../ansible/templates/docker-compose.yml
26 git add ../travis/docker_push.sh
27
28 # The commit
29 git commit -m"Version $new_tag"
30 git tag $new_tag
31
32 # Now doing the building on travis, but leave this in for when you need to do an arm build
33
34 # export COMPOSE_DOCKER_CLI_BUILD=1
35 # export DOCKER_BUILDKIT=1
36
37 # # Rebuilding docker
38 # if [ $third_semver -eq 0 ]; then
39 #   # TODO get linux/arm/v7 build working
40 #   # Build for Raspberry Pi / other archs too
41 #   docker buildx build --platform linux/amd64,linux/arm64 ../../ \
42 #     --file Dockerfile \
43 #     --tag dessalines/lemmy:$new_tag \
44 #     --push
45 # else
46 #   docker buildx build --platform linux/amd64 ../../ \
47 #     --file Dockerfile \
48 #     --tag dessalines/lemmy:$new_tag \
49 #     --push
50 # fi
51
52 # Push
53 git push origin $new_tag
54 git push
55
56 # Pushing to any ansible deploys
57 # cd ../../../lemmy-ansible || exit
58 # ansible-playbook -i prod playbooks/site.yml --vault-password-file vault_pass