HedgeDoc - Fix 3/x

This commit is contained in:
KsmoinO 2022-11-19 14:43:32 +01:00
parent 4fb195495c
commit cc6e3dc072
2 changed files with 4 additions and 2 deletions

View file

@ -4,6 +4,7 @@
version: '3' version: '3'
services: services:
database: database:
container_name: database
# 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}
@ -46,6 +47,7 @@ services:
# restart: always # restart: always
app: app:
container_name: app
# Uncomment the following section to build the image yourself: # Uncomment the following section to build the image yourself:
#build: #build:
# context: . # context: .

View file

@ -14,5 +14,5 @@ upstream_images="${hedgedoc_image} ${postgres_image}"
datavolume='podman-hedgedoc_data' datavolume='podman-hedgedoc_data'
dbvolume='podman-hedgedoc_database' dbvolume='podman-hedgedoc_database'
uploadsvolume='podman-hedgedoc_uploads' uploadsvolume='podman-hedgedoc_uploads'
container_name='podman-hedgedoc_app' container_name='app'
db_container_name='podman-hedgedoc_database' db_container_name='database'