Remove db platform from docker-compose.yml
The platform option in the docker-compose.yml is unnecessary and doesn't work when running under an M1 arm Mac. That line can just be removed.
https://github.com/ucfopen/UDOIT/blob/ff9d7cd76128a2df339351e5268e53bd71b0a25e/docker-compose.nginx.yml#L6
The platform: linux/amd64 makes it work on M1 Macs if you have Rosetta2 installed.
I believe I have rosetta
When I run docker compose -f docker-compose.nginx.yml up it says
Error response from daemon: image with reference mysql:latest was found but does not match the specified platform: wanted linux/amd64, actual: linux/arm64/v8
Perhaps because I already have a project that uses the linux/arm64/v8 mysql? I could clean my images I guess but we've got so many docker-compose files that use mysql.
Oh wow, they did officially release an ARM64 docker image for mysql. I never thought it would happen. If that's the case then that line can be removed.
Yeah, ever since the 8.0.29 tag 3 months ago I guess. Feels like it was longer.

@jonespm Feel free to submit this as a PR. It would qualify for Hacktoberfest if you're participating in it.
Okay, easy enough. I forgot it was that time of year already. Thanks @bagofarms.