49
edits
| Line 41: | Line 41: | ||
# 'echo "MM_ENV=Development" > ./docker/.env` - I am not sure if this needs to go into the docker directory, or just exist? .env files are .gitignored anyway, but it looks like this is used by docker to set some environment vars in the docker-compose.yml | # 'echo "MM_ENV=Development" > ./docker/.env` - I am not sure if this needs to go into the docker directory, or just exist? .env files are .gitignored anyway, but it looks like this is used by docker to set some environment vars in the docker-compose.yml | ||
# `cd ./docker` | # `cd ./docker` | ||
# `docker pull` (this make take a while) | # `docker compose pull` (this make take a while) | ||
# `docker compose up -d` to start your docker image | # `docker compose up -d` to start your docker image | ||
# `docker ps` will list your running containers processes that are created by the docker yaml file | # `docker ps` will list your running containers processes that are created by the docker yaml file | ||
edits