Browse Source

Ajusta localização docker-compose.yaml

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

10
docker/docker-compose.yaml

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

9
release.sh

@ -30,11 +30,11 @@ FINAL_VERSION=
function change_files { 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 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 sed -E -i "" "s|$OLD_VERSION|$FINAL_VERSION|g" setup.py
@ -61,11 +61,14 @@ function set_rc_version {
fi fi
FINAL_VERSION=$NEXT_RC_VERSION FINAL_VERSION=$NEXT_RC_VERSION
echo "OLD_VERSION: $OLD_VERSION"
echo "FINAL_VERSION: $FINAL_VERSION"
} }
function commit_and_push { function commit_and_push {
echo "committing..." 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 commit -m "Release: $FINAL_VERSION"
git tag $FINAL_VERSION git tag $FINAL_VERSION

Loading…
Cancel
Save