estimated reading time 1 min
Here is the docker-compose file for AviDemux, the free video editor and muxer.
It also can be used to create an application in the Qnap Container-Station. (That’s how I use it)
--- version: '2.1' services: ################################################################################ # aviDemux # ################################################################################ avidemux: image: jlesage/avidemux container_name: avidemux environment: - PUID=0 - PGID=100 - UMASK=0 - TZ=Asia/Bangkok # Optional: When set to 1, an encrypted connection is used to access the application's GUI (either via a web browser or VNC client) # - SECURE_CONNECTION # Optional: Password needed to connect to the application's GUI. # - VNC_PASSWORD # Optional: When set to 1, open-source computer font WenQuanYi Zen Hei is installed. This font contains a large range of Chinese/Japanese/Korean characters. - ENABLE_CJK_FONT=1 volumes: - /share/Container/container-data/avidemux:/config - /share/Media:/storage ports: - 5815:5800 # Optional: Port used to access the application's GUI via the VNC protocol # - 5900:5900 restart: unless-stopped
Ensure that adapt the environment to your needs! Especially the volumes and PUID / PGID
Views: 33