HedgeDoc - Fix 14/x

This commit is contained in:
KsmoinO 2022-11-19 19:16:17 +01:00
parent b127eb7bd3
commit 34b9246432
2 changed files with 4 additions and 4 deletions

View file

@ -64,8 +64,8 @@ export hedgedoc_image
export hedgedoc_version
export database_image
export database_version
export dbvolume
export datavolume
export container_name
export db_container_name
if ! podman image exists ${hedgedoc_image}:${hedgedoc_version}; then
podman image pull ${hedgedoc_image}:${hedgedoc_version} || exit 1

View file

@ -4,7 +4,7 @@
version: '3'
services:
database:
container_name: database
container_name: ${db_container_name}
# Don't upgrade PostgreSQL by simply changing the version number
# You need to migrate the Database to the new PostgreSQL version
image: ${database_image}:${database_version}
@ -47,7 +47,7 @@ services:
# restart: always
app:
container_name: app
container_name: ${container_name}
# Uncomment the following section to build the image yourself:
#build:
# context: .