by XCSme on 5/11/25, 10:48 PM with 1 comments
by XCSme on 5/11/25, 10:48 PM
``` docker run -d -p 8080:80 --name uxwizz -v uxwizz_www:/var/www/html -v uxwizz_db:/var/lib/mysql uxwizz/uxwizz ```
This has both the web-server and DB in the same container, which is not best practice, but avoids the need of having to download a docker-compose file.
Now, I also made a docker-compose for those who want separate web/db containers and more control over the setup.