-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Description
Method 1 (With docker and docker-compose)
- this appear when run
docker-compose up
MYdocker-compose.yaml
version: "2"
networks:
mysql:
driver: bridge
services:
mysql:
image: mysql:5.7.21
networks:
- mysql
volumes:
- ${PWD}/data/mysql:/var/lib/mysql
ports:
- "3307:3306"
environment:
- MYSQL_ROOT_PASSWORD=12345
- MYSQL_DATABASE=db
- MYSQL_USER=user
- MYSQL_PASSWORD=12345
- ALLOW_EMPTY_PASSWORD=NO
adminer:
image: adminer
networks:
- mysql
ports:
- "8085:8080"
workplace:
build: .
networks:
- mysql
ports:
- "3000:3000"
depends_on:
- mysql
I didn't change anything on datasources.json , How to solve this?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels


