Commit 3d54d68a authored by darthrevan13's avatar darthrevan13 Committed by GitHub

Fix for mariadb local path

When running docker-compose with mariadb the following message will appear:

ERROR: for mariadb  Cannot create container for service mariadb: Invalid volume spec "mariadb": Invalid volume destination path: 'mariadb' mount path must be absolute.
ERROR: Encountered errors while bringing up the project.

This commit fixes the issue.
parent a0153810
......@@ -128,7 +128,7 @@ services:
mariadb:
build: ./mariadb
volumes:
- mariadb
- mysql:/var/lib/mysql
ports:
- "3306:3306"
environment:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment