Docker is just a tool. Wanting to use docker shouldn't be your first decision.
First, you should think about what you want to do. Are you planning on writing it from scratch? Or use a CMS like WordPress? If the former, what language do you want your backend to be? Static generation (i.e. the server emits html) or client side (i.e. you have an api and the client is written using e.g. react)?
After you have decided all that, you can find information for that configuration. You can look up a docker compose configuration for e.g. php with a mysql database.
1 Comments
p_consti@lemmy.world · 1 pts · 1y
Docker is just a tool. Wanting to use docker shouldn't be your first decision.
First, you should think about what you want to do. Are you planning on writing it from scratch? Or use a CMS like WordPress? If the former, what language do you want your backend to be? Static generation (i.e. the server emits html) or client side (i.e. you have an api and the client is written using e.g. react)?
After you have decided all that, you can find information for that configuration. You can look up a docker compose configuration for e.g. php with a mysql database.