Skip to content

Commit

Permalink
Merge pull request 'Update lemmy-ui version in docker-compose files o…
Browse files Browse the repository at this point in the history
…n release (fixes #1164)' (#111) from update-lemmy-ui into main

Reviewed-on: https://yerbamate.dev/LemmyNet/lemmy/pulls/111
  • Loading branch information
dessalines committed Oct 5, 2020
2 parents 75ace11 + 5a56c08 commit 38f4c5f
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions docker/prod/deploy.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/sh
set -e
git checkout main
#git checkout main

# Creating the new tag
new_tag="$1"
third_semver=$(echo $new_tag | cut -d "." -f 3)
#third_semver=$(echo $new_tag | cut -d "." -f 3)

# Setting the version on the front end
cd ../../
Expand All @@ -17,12 +17,16 @@ git add "ansible/VERSION"

cd docker/prod || exit

# Changing the docker-compose prod
# Changing various references to the Lemmy version
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../dev/docker-compose.yml
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../federation/docker-compose.yml
sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../prod/docker-compose.yml
sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../../ansible/templates/docker-compose.yml
sed -i "s/dessalines\/lemmy-ui:.*/dessalines\/lemmy-ui:$new_tag/" ../prod/docker-compose.yml
sed -i "s/dessalines\/lemmy:v.*/dessalines\/lemmy:$new_tag/" ../travis/docker_push.sh

git add ../dev/docker-compose.yml
git add ../federation/docker-compose.yml
git add ../prod/docker-compose.yml
git add ../../ansible/templates/docker-compose.yml
git add ../travis/docker_push.sh

# The commit
Expand Down

0 comments on commit 38f4c5f

Please sign in to comment.