.docker/local/.env
based on .docker/local/.env.example
.docker/local/.env
./env.sh local up
./env.sh local down
ssh
into the servercd
into the project directory and git clone
the repo (skip these steps if already cloned)cd
into the project directory and git pull
(pull often to keep the code updated).docker/testing/.env
based on .docker/testing/.env.example
./env.sh testing up
./env.sh testing down
docker ps
and find the DB's container IDdocker exec -it <_DB_container_id_> bash
to enter the container terminal of the DBmysql -u root -p
and enter the password configured in .docker/testing/.env
SHOW DATABASES;
etc.