This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM chriszarate/wordpress | |
RUN \ | |
apt-get update && \ | |
apt-get install unzip wget mysql-client -y && \ | |
rm -rf /var/lib/apt/lists/* | |
COPY ./uploads.ini /usr/local/etc/php/conf.d/uploads.ini | |
COPY docker-entrypoint.sh /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The events are from https://www.w3.org/TR/html5/semantics-embedded-content.html#media-elements-event-summary | |
import videojs from 'video.js' | |
const Plugin = videojs.getPlugin('plugin') | |
const EVENTS = [ | |
'loadstart', | |
'progress', | |
'suspend', | |
'abort', | |
'error', |
OlderNewer