Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump liquibase/liquibase from 4.25-alpine to 4.26-alpine in /db/postgres #346

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion db/postgres/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM liquibase/liquibase:4.25-alpine
FROM liquibase/liquibase:4.26-alpine
COPY . /liquibase/changelog/
5 changes: 2 additions & 3 deletions stack/product/compose.j2
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ services:
image: {{ storage.image }}:{{ storage.version }}-alpine
networks:
- product
- gear
ports:
- 5432:5432
environment:
Expand All @@ -34,14 +33,14 @@ services:
image: {{ image_ns }}/{{ database.image }}:{{ database.cid }}
networks:
- product
- gear
depends_on:
storage:
condition: service_healthy
labels:
image.key: {{ database.image }}
command: >-
--show-banner=false
--classpath=/liquibase/changelog
--changelog-file=dba/changelog.yaml
--url=jdbc:postgresql://storage:5432/postgres
--liquibase-schema-name=public
Expand All @@ -59,14 +58,14 @@ services:
image: {{ image_ns }}/{{ database.image }}:{{ database.cid }}
networks:
- product
- gear
depends_on:
database:
condition: service_completed_successfully
labels:
image.key: {{ database.image }}
command: >-
--show-banner=false
--classpath=/liquibase/changelog
--changelog-file=owner/changelog.yaml
--url=jdbc:postgresql://storage:5432/{{ database.name }}
--liquibase-schema-name=public
Expand Down
Loading