Sample .env file contains:
# Directory where the SQLite database is stored
DATA_DIR=./data
Sample compose file contains:
volumes:
- ${BACKEND_DATA_VOLUME:-backend-data}:/data
Is the first variablemeant for the directory INSIDE the container and the second one can be declared like this BACKEND_DATA_VOLUME=./places-data to exchange the named volume with a bind-mounted volume?
Sample .env file contains:
Sample compose file contains:
Is the first variablemeant for the directory INSIDE the container and the second one can be declared like this
BACKEND_DATA_VOLUME=./places-datato exchange the named volume with a bind-mounted volume?