Skip to content

Mouly22/BD-Smart-Agricultural-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

First of all You need to have docker installed

source anaconda3/bin/activate
conda activate django

Before running the commands: sudo docker ps -a It will show all the containers

To run mysql server

sudo docker run -d --name mysql-container -e MYSQL_ROOT_PASSWORD=root -p 3306:3306 mysql:latest

To check if the mysql server is working or not:: sudo mysql -h 127.0.0.1 -u root -p -P 3306

To run php myadmin:

docker run --name phpmyadmin-container -d --link mysql-container:db -p 8080:80 phpmyadmin/phpmyadmin

How ever after doing those everytime you restart your pc your can use the commands just to restart those containers:
sudo docker start mysql-container sudo docker start phpmyadmin-container

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published