Now I have A running docker Container, I have a Running Container from
zabbix_server Image , i want to change parameter in /etc/zabbix/zabbix_server
how can This running container about the new changes
Now I have A running docker Container, I have a Running Container from
zabbix_server Image , i want to change parameter in /etc/zabbix/zabbix_server
how can This running container about the new changes
If it's a CMD or ENTRYPOINT, you can override it following this link override ENTRYPOINT or CMD
If it's not a CMD or ENTRYPOINT, access to your container using shell after copy your new files:
docker cp <yourfile> <yourcontainer>:/path
docker exec -ti <yourcontainer> /bin/bash