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 hedgedoc_version
export database_image export database_image
export database_version export database_version
export dbvolume export container_name
export datavolume export db_container_name
if ! podman image exists ${hedgedoc_image}:${hedgedoc_version}; then if ! podman image exists ${hedgedoc_image}:${hedgedoc_version}; then
podman image pull ${hedgedoc_image}:${hedgedoc_version} || exit 1 podman image pull ${hedgedoc_image}:${hedgedoc_version} || exit 1

View file

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