How can I copy files that are inside the container so I can edit them?
services:
web:
image: jitsi/web
restart: ${RESTART_POLICY}
ports:
- '${HTTP_PORT}:80'
- '${HTTPS_PORT}:443'
volumes:
- ${CONFIG}/web:/config
- ${CONFIG}/web/letsencrypt:/etc/letsencrypt
- ${CONFIG}/transcripts:/usr/share/jitsi-meet/transcripts
I want to access the files in the directory /usr/share/jitsi-meet/transcripts
within the container:
base.html connection_optimization favicon.ico head.html index.htmllibs package-lock.json plugin.head.html scripts static transcripts
root@cb7d87c5635f:/usr/share/jitsi-meet#