Browse Source

Ajusta localização docker-compose.yaml

pull/3455/merge
Edward Ribeiro 2 years ago
parent
commit
e20b98094b
  1. 8
      docker/docker-compose.yaml
  2. 9
      release.sh

8
docker/docker-compose.yaml

@ -32,10 +32,10 @@ services:
networks:
- sapl-net
sapl:
# image: interlegis/sapl:3.1.162-RC13
build:
context: ../
dockerfile: ./docker/Dockerfile
image: interlegis/sapl:3.1.163-RC2
# build:
# context: ../
# dockerfile: ./docker/Dockerfile
container_name: sapl
labels:
NAME: "sapl"

9
release.sh

@ -30,11 +30,11 @@ FINAL_VERSION=
function change_files {
OLD_VERSION=$(grep -E 'interlegis/sapl:'$VERSION_PATTERN dist/docker-compose.yml | cut -d':' -f3)
OLD_VERSION=$(grep -E 'interlegis/sapl:'$VERSION_PATTERN docker/docker-compose.yaml | cut -d':' -f3)
echo "Atualizando de "$OLD_VERSION" para "$FINAL_VERSION
sed -E -i "" "s|$OLD_VERSION|$FINAL_VERSION|g" dist/docker-compose.yml
sed -E -i "" "s|$OLD_VERSION|$FINAL_VERSION|g" docker/docker-compose.yaml
sed -E -i "" "s|$OLD_VERSION|$FINAL_VERSION|g" setup.py
@ -61,11 +61,14 @@ function set_rc_version {
fi
FINAL_VERSION=$NEXT_RC_VERSION
echo "OLD_VERSION: $OLD_VERSION"
echo "FINAL_VERSION: $FINAL_VERSION"
}
function commit_and_push {
echo "committing..."
git add dist/docker-compose.yml setup.py sapl/settings.py sapl/templates/base.html
git add docker/docker-compose.yaml setup.py sapl/settings.py sapl/templates/base.html
git commit -m "Release: $FINAL_VERSION"
git tag $FINAL_VERSION

Loading…
Cancel
Save