aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorLibravatar thursday <xthursdayx@mailbox.org>2021-07-13 09:16:58 -0400
committerLibravatar GitHub <noreply@github.com>2021-07-13 09:16:58 -0400
commitc87515d488b5c7d8858f404dbca1627b87128b27 (patch)
tree9fce43774474436fc65c56f2119e54139fcc595b /docker
parentUpdate .env.example (diff)
downloadferdium-server-c87515d488b5c7d8858f404dbca1627b87128b27.tar.gz
ferdium-server-c87515d488b5c7d8858f404dbca1627b87128b27.tar.zst
ferdium-server-c87515d488b5c7d8858f404dbca1627b87128b27.zip
Update docker-compose.yml
Fixed the DATA_DIR to align with the rest of the repo and removed the reference to the config volume.
Diffstat (limited to 'docker')
-rw-r--r--docker/docker-compose.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml
index acd1264..7a67b87 100644
--- a/docker/docker-compose.yml
+++ b/docker/docker-compose.yml
@@ -26,13 +26,11 @@ services:
26 - CONNECT_WITH_FRANZ=false 26 - CONNECT_WITH_FRANZ=false
27 - DATA_DIR=/data # existing Ferdi-server users should ensure that they add this variable to ensure data persistence. 27 - DATA_DIR=/data # existing Ferdi-server users should ensure that they add this variable to ensure data persistence.
28 volumes: 28 volumes:
29 - ferdi-config-vol:/config 29 - ferdi-database-vol:/data # existing Ferdi-server users who use the built-in sqlite database should use the volume name "/app/database"
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 30 - ferdi-recipes-vol:/app/recipes
32 ports: 31 ports:
33 - 3333:3333 # existing Ferdi-server users will neeed to update their portt mappings from 80:3333 to 3333:3333. 32 - 3333:3333 # existing Ferdi-server users will neeed to update their portt mappings from 80:3333 to 3333:3333.
34 restart: unless-stopped 33 restart: unless-stopped
35volumes: 34volumes:
36 ferdi-config-vol:
37 ferdi-database-vol: 35 ferdi-database-vol:
38 ferdi-recipes-vol: 36 ferdi-recipes-vol: