Skip to content
#

Database

A database is a structured set of data held in a computer, most often a server. Databases use a database management system (DBMS) that interacts with users, similar to a lookup table. Modern databases are designed to allow for creation, querying, updating, and administration of the data it holds.

Here are 318 public repositories matching this topic...

jmsgwd
jmsgwd commented Jan 5, 2020

The documentation says that by default, CSV export generates a file "that is readable by Microsoft Excel in Europe, i.e., the default encoding is WINDOWS-1252 and the separator is ;".

I understand this is only a default, and it can be overridden using environment variables.

However, I suggest that the default should be changed to UTF-8 and the more standard comma-separated values, for the

docker
PostPollux
PostPollux commented Apr 6, 2020

Having a look at the documentation about how to use the docker version of Directus there is a list of environment variables:
https://docs.directus.io/docker/environment.html#all-variables

A lot of the environment variables are "arrays". How can one set array environment variables in docker. I don't think it's possible, or is it? I think this should be mentiond somewhere. It's a bit misleading

hhorak
hhorak commented Jul 11, 2017

Both, MariaDB and PostgreSQL pass the rest of the run- arguments given to this script by docker run command to the itself:

exec ${MYSQL_PREFIX}/libexec/mysqld --defaults-file=$MYSQL_DEFAULTS_FILE "$@" 2>&1
...
exec postgres "$@"

This allows to change/add some options on the docker run command line or in template without providing whole new configuration. If t

Wikipedia
Wikipedia
You can’t perform that action at this time.