aboutsummaryrefslogtreecommitdiffstats
path: root/docker/docker-compose.yml
diff options
context:
space:
mode:
authorLibravatar thursday <xthursdayx@mailbox.org>2021-07-09 17:32:19 -0400
committerLibravatar GitHub <noreply@github.com>2021-07-09 17:32:19 -0400
commita347c97e6b1efb344752951af5db81d84e91e58f (patch)
tree4eca253656c96026a3047ca797fd25a8cb84c231 /docker/docker-compose.yml
parentUpdate .env.example (diff)
downloadferdium-server-a347c97e6b1efb344752951af5db81d84e91e58f.tar.gz
ferdium-server-a347c97e6b1efb344752951af5db81d84e91e58f.tar.zst
ferdium-server-a347c97e6b1efb344752951af5db81d84e91e58f.zip
Update database name and volume.
Updated to reflect the changes made to database.js and alert existing users to breaking changes.
Diffstat (limited to 'docker/docker-compose.yml')
-rw-r--r--docker/docker-compose.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml
index d558ed4..905d79b 100644
--- a/docker/docker-compose.yml
+++ b/docker/docker-compose.yml
@@ -11,7 +11,7 @@ services:
11 - DB_PORT=3306 11 - DB_PORT=3306
12 - DB_USER=root 12 - DB_USER=root
13 - DB_PASSWORD=password 13 - DB_PASSWORD=password
14 - DB_DATABASE=database 14 - DB_DATABASE=database # existing Ferdi-server users who use the built-in sqlite database should use the database name "development"
15 - DB_SSL=false 15 - DB_SSL=false
16 - MAIL_CONNECTION=smtp 16 - MAIL_CONNECTION=smtp
17 - SMPT_HOST=127.0.0.1 17 - SMPT_HOST=127.0.0.1
@@ -27,7 +27,7 @@ services:
27 - DATA_DIR=data 27 - DATA_DIR=data
28 volumes: 28 volumes:
29 - ferdi-config-vol:/config 29 - ferdi-config-vol:/config
30 - ferdi-database-vol:/app/data 30 - ferdi-database-vol:/app/data # existing Ferdi-server users who use the built-in sqlite database should use the volume name "/app/database"
31 - ferdi-recipes-vol:/app/recipes 31 - ferdi-recipes-vol:/app/recipes
32 ports: 32 ports:
33 - 3333:3333 33 - 3333:3333