Answer the question
In order to leave comments, you need to log in
Docker development inside a container?
I studied the docks and read a lot of articles, but did not understand how to make changes to the project when the container is running, which inside it runs nginx with my conditional project on localhost
How do I continue development so that I can see changes in real time at localhost and most importantly, how to make them at all so that changes from the host machine are transferred to the docker container without restarting the container itself?
Answer the question
In order to leave comments, you need to log in
how to make changes to the project while the container is running
version: '3.4'
services:
app:
volumes:
- ./app:/app/app
- ./frontend:/app/frontend
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question