From 0233e950cc5972c99bad825a26b10b2bc2ecf206 Mon Sep 17 00:00:00 2001 From: David Siaw Date: Fri, 2 Jun 2017 15:01:43 +0900 Subject: [PATCH 1/6] docker support --- Dockerfile | 37 ++++++ README.md | 32 +++++ config.template.docker.yaml | 241 ++++++++++++++++++++++++++++++++++++ container-install.sh | 9 ++ package.json | 2 +- run.sh | 58 ++++++++- 6 files changed, 377 insertions(+), 2 deletions(-) create mode 100644 Dockerfile create mode 100644 config.template.docker.yaml create mode 100644 container-install.sh diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..31217655 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,37 @@ +FROM alpine:3.6 + +ADD . /app + +RUN cd app && sh container-install.sh + +WORKDIR /app + +ENV MYSQL_HOST localhost +ENV MYSQL_PORT 3306 +ENV MYSQL_DATABASE cytube +ENV MYSQL_USER cytube +ENV MYSQL_PASSWORD nico_best_girl +ENV MYSQL_ROOT_PASSWORD ruby_best_girl +ENV SYNC_TITLE Sync +ENV SYNC_DESCRIPTION Sync Video +ENV ROOT_URL http://localhost:8080 +ENV ROOT_PORT 8080 +ENV IO_ROOT_URL http://localhost +ENV IO_ROOT_PORT 1337 +ENV ROOT_DOMAIN localhost:8080 +ENV HTTPS_ENABLED false +ENV TRUST_ALL_PROXIES false +#ENV YOUTUBE_KEY +#ENV TWITCH_CLIENT_ID + +EXPOSE 8080 +# EXPOSE 1337 +# EXPOSE 8443 + +ADD conf /app/conf +ADD config.template.docker.yaml /app/config.template.yaml +ADD run.sh /app/run.sh + +WORKDIR /app + +CMD ["sh", "run.sh"] diff --git a/README.md b/README.md index cd3b3e05..bcd3c1e9 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,38 @@ General help with the software and the website is also available on the IRC channel at [irc.esper.net#cytube](http://webchat.esper.net/?channels=cytube) during US daytime hours. +Docker +------ + +Example for using the dockerfile on this repo. + +``` +docker build -t sync . +docker network create sync + +docker run -d --name sync-db \ +-e MARIADB_ROOT_PASSWORD='abcdefg123456' \ +-e MARIADB_DATABASE=cytube \ +-e MARIADB_USER=cytube \ +-e MARIADB_PASSWORD=aaaaa \ +--network sync mariadb + +docker run -d --name sync-web \ +-e MYSQL_HOST=sync-db \ +-e MYSQL_PASSWORD=aaaaa \ +-e ROOT_URL=https://cytube.my.domain \ +-e IO_ROOT_URL=https://cytube.my.domain \ +-e ROOT_DOMAIN=cytube.my.domain \ +-e VIRTUAL_HOST=cytube.my.domain \ +-e VIRTUAL_PORT=8080 \ +-e LETSENCRYPT_HOST=cytube.my.domain \ +-e YOUTUBE_KEY=abcdefg \ +--network sync sync +``` + +Feedback +-------- + ## License Original source code in this repository is provided under the MIT license diff --git a/config.template.docker.yaml b/config.template.docker.yaml new file mode 100644 index 00000000..a09d46f4 --- /dev/null +++ b/config.template.docker.yaml @@ -0,0 +1,241 @@ +# MySQL server details +# server: domain or IP of MySQL server +# database: a MySQL database that the user specified has read/write access to +# user: username to authenticate as +# password: password for user +mysql: + server: '${MYSQL_HOST}' + port: ${MYSQL_PORT} + database: '${MYSQL_DATABASE}' + user: '${MYSQL_USER}' + password: '${MYSQL_PASSWORD}' + pool-size: 10 + +# Define IPs/ports to listen on +# Each entry MUST define ip and port (ip can be '' to bind all available addresses) +# Each entry should set http, https, and/or io to true to listen for the corresponding +# service on that port. http/io and https/io can be combined, but if http and https +# are both specified, only https will be bound to that port. +# +# If you don't specify a url, the url io.domain:port or https.domain:port will be assumed +# for non-ssl and ssl websockets, respectively. You can override this by specifying the +# url for a websocket listener. +listen: +# Default HTTP server - default interface, port 8080 + - ip: '' + port: ${ROOT_PORT} + http: true + io: true + url: ${ROOT_URL} +# Uncomment below to enable HTTPS/SSL websockets +# Note that you must also set https->enabled = true in the https definition +# - ip: '' +# port: 8443 +# https: true +# io: true +# Default Socket.IO server - default interface, port 1337 + # - ip: '' + # port: ${IO_ROOT_PORT} + # io: true +# Example of how to bind an extra port to HTTP and Socket.IO +# - ip: '' +# port: 8081 +# http: true +# io: true +# url: 'http://my-other-thing.site.com:8081' + +# HTTP server details +http: + # Even though you may specify multiple ports to listen on for HTTP above, + # one port must be specified as default for the purposes of generating + # links with the appropriate port + default-port: ${ROOT_PORT} + # Specifies the root domain for cookies. If you have multiple domains + # e.g. a.example.com and b.example.com, the root domain is example.com + root-domain: '${ROOT_DOMAIN}' + # Specify alternate domains/hosts that are allowed to set the login cookie + # Leave out the http:// + alt-domains: + - '127.0.0.1' + # Use express-minify to minify CSS and Javascript + minify: false + # Max-Age for caching. Value should be an integer in milliseconds or a string accepted by + # the `ms` module. Set to 0 to disable caching. + max-age: '7d' + # Set to false to disable gzip compression + gzip: true + # Customize the threshold byte size for applying gzip + gzip-threshold: 1024 + # Secret used for signed cookies. Can be anything, but make it unique and hard to guess + cookie-secret: '${COOKIE_SECRET}' + index: + # Maximum number of channels to display on the index page public channel list + max-entries: 50 + # Configure trusted proxy addresses to map X-Forwarded-For to the client IP. + # See also: https://github.com/jshttp/proxy-addr + trust-proxies: + - loopback + - 103.21.244.0/22 # Cloudflare + - 103.22.200.0/22 + - 103.31.4.0/22 + - 104.16.0.0/13 + - 104.24.0.0/14 + - 108.162.192.0/18 + - 131.0.72.0/22 + - 141.101.64.0/18 + - 162.158.0.0/15 + - 172.64.0.0/13 + - 173.245.48.0/20 + - 188.114.96.0/20 + - 190.93.240.0/20 + - 197.234.240.0/22 + - 198.41.128.0/17 + - 2400:cb00::/32 + - 2606:4700::/32 + - 2803:f800::/32 + - 2405:b500::/32 + - 2405:8100::/32 + - 2a06:98c0::/29 + - 2c0f:f248::/32 + - ${IMMEDIATE_PROXY} + +# HTTPS server details +https: + enabled: ${HTTPS_ENABLED} + # Even though you may specify multiple ports to listen on for HTTPS above, + # one port must be specified as default for the purposes of generating + # links with the appropriate port + default-port: 8443 + domain: '${ROOT_URL}' + keyfile: 'localhost.key' + passphrase: '' + certfile: 'localhost.cert' + cafile: '' + ciphers: 'HIGH:!DSS:!aNULL@STRENGTH' + +# Page template values +# title goes in the upper left corner, description goes in a tag +html-template: + title: '${SYNC_TITLE}' + description: '${SYNC_DESCRIPTION}' + +# Socket.IO server details +io: + # In most cases this will be the same as the http.domain. + # However, if your HTTP traffic is going through a proxy (e.g. cloudflare) + # you will want to set up a passthrough domain for socket.io. + # If the root of this domain is not the same as the root of your HTTP domain + # (or HTTPS if SSL is enabled), logins won't work. + domain: '${IO_ROOT_URL}' + # Even though you may specify multiple ports to listen on for HTTP above, + # one port must be specified as default for the purposes of generating + # links with the appropriate port + default-port: ${IO_ROOT_PORT} + # limit the number of concurrent socket connections per IP address + ip-connection-limit: 10 + cors: + # Additional origins to allow socket connections from (io.domain and + # https.domain are included implicitly). + allowed-origins: [] + +# YouTube v3 API key +# 1. Go to https://console.developers.google.com/, create a new "project" (or choose an existing one) +# 2. Make sure the YouTube Data v3 API is "enabled" for your project: https://console.developers.google.com/apis/library/youtube.googleapis.com +# 3. Go to "Credentials" on the sidebar of https://console.developers.google.com/, click "Create credentials" and choose type "API key" +# 4. Optionally restrict the key for security, or just copy the key. +# 5. Test your key (may take a few minutes to become active): +# +# $ export YOUTUBE_API_KEY="your key here" +# $ curl "https://www.googleapis.com/youtube/v3/search?key=$YOUTUBE_API_KEY&part=id&maxResults=1&q=test+video&type=video" +youtube-v3-key: '${YOUTUBE_KEY}' +# Limit for the number of channels a user can register +max-channels-per-user: 5 +# Limit for the number of accounts an IP address can register +max-accounts-per-ip: 5 +# Minimum number of seconds between guest logins from the same IP +guest-login-delay: 60 + +# Allows you to customize the path divider. The /r/ in http://localhost/r/yourchannel +# Acceptable characters are a-z A-Z 0-9 _ and - +channel-path: 'r' +# Allows you to blacklist certain channels. Users will be automatically kicked +# upon trying to join one. +channel-blacklist: [] +# Minutes between saving channel state to disk +channel-save-interval: 5 + +# Configure periodic clearing of old alias data +aliases: + # Interval (in milliseconds) between subsequent runs of clearing + purge-interval: 3600000 + # Maximum age of an alias (in milliseconds) - default 1 month + max-age: 2592000000 + +# Workaround for Vimeo blocking my domain +vimeo-workaround: false + +# Regular expressions for defining reserved user and channel names and page titles +# The list of regular expressions will be joined with an OR, and compared without +# case sensitivity. +# +# Default: reserve any name containing "admin[istrator]" or "owner" as a word +# but only if it is separated by a dash or underscore (e.g. dadmin is not reserved +# but d-admin is) +reserved-names: + usernames: + - '^(.*?[-_])?admin(istrator)?([-_].*)?$' + - '^(.*?[-_])?owner([-_].*)?$' + channels: + - '^(.*?[-_])?admin(istrator)?([-_].*)?$' + - '^(.*?[-_])?owner([-_].*)?$' + pagetitles: [] + +# Provide a contact list for the /contact page +# Example: +# contacts: +# - name: 'my_name' +# title: 'administrator +# email: 'me@my.site' +contacts: [] + +playlist: + max-items: 4000 + # How often (in seconds), mediaUpdate packets are broadcast to clients + update-interval: 5 + +# If set to true, when the ipThrottle and lastguestlogin rate limiters are cleared +# periodically, the garbage collector will be invoked immediately. +# The server must be invoked with node --expose-gc index.js for this to have any effect. +aggressive-gc: false + +# If you have ffmpeg installed, you can query metadata from raw files, allowing +# server-synched raw file playback. This requires the following: +# * ffmpeg must be installed on the server +ffmpeg: + enabled: true +# Executable name for ffprobe if it is not "ffprobe". On Debian and Ubuntu (on which +# libav is used rather than ffmpeg proper), this is "avprobe" + ffprobe-exec: 'ffprobe' + +link-domain-blacklist: [] + +# Drop root if started as root!! +setuid: + enabled: false + group: 'users' + user: 'user' +# how long to wait in ms before changing uid/gid + timeout: 15 + +# Allows for external services to access the system commandline +# Useful for setups where stdin isn't available such as when using PM2 +service-socket: + enabled: false + socket: 'service.sock' + +# Twitch Client ID for the data API (used for VOD lookups) +# https://github.com/justintv/Twitch-API/blob/master/authentication.md#developer-setup +twitch-client-id: '${TWITCH_CLIENT_ID}' + +poll: + max-options: 50 diff --git a/container-install.sh b/container-install.sh new file mode 100644 index 00000000..bed54da4 --- /dev/null +++ b/container-install.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +apk update +apk add build-base python git nodejs nodejs-npm mysql mysql-client curl gettext ffmpeg +npm install npm@latest -g +npm install +npm run build-server + + diff --git a/package.json b/package.json index c696bfb6..a1923cfb 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "cookie-parser": "^1.4.5", "create-error": "^0.3.1", "csrf": "^3.1.0", - "cytubefilters": "github:calzoneman/cytubefilters#c67b2dab2dc5cc5ed11018819f71273d0f8a1bf5", + "cytubefilters": "git://github.com/davidsiaw/cytubefilters", "express": "^4.17.1", "express-minify": "^1.0.0", "json-typecheck": "^0.1.3", diff --git a/run.sh b/run.sh index 27b3caa1..efdc2990 100755 --- a/run.sh +++ b/run.sh @@ -1,8 +1,64 @@ #!/bin/sh +#plagiarized from wangxian/alpine-mysql +if [ -d /app/mysql ]; then + echo "[i] MySQL directory already present, skipping creation" +else + echo "[i] MySQL data directory not found, creating initial DBs" + + mysql_install_db --user=root > /dev/null + + if [ "$MYSQL_ROOT_PASSWORD" = "" ]; then + MYSQL_ROOT_PASSWORD=111111 + echo "[i] MySQL root Password: $MYSQL_ROOT_PASSWORD" + fi + + MYSQL_DATABASE=${MYSQL_DATABASE} + MYSQL_USER=${MYSQL_USER} + MYSQL_PASSWORD=${MYSQL_PASSWORD} + + if [ ! -d "/run/mysqld" ]; then + mkdir -p /run/mysqld + fi + + tfile=`mktemp` + if [ ! -f "$tfile" ]; then + return 1 + fi + + cat << EOF > $tfile +USE mysql; +FLUSH PRIVILEGES; +GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY "$MYSQL_ROOT_PASSWORD" WITH GRANT OPTION; +GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION; +DROP USER ''@'${HOSTNAME}'; +DROP USER 'root'@'${HOSTNAME}'; +DROP USER 'root'@'localhost'; +DROP USER 'root'@'127.0.0.1'; +DROP USER 'root'@'::1'; +DROP USER ''@'localhost'; +UPDATE user SET password=PASSWORD("${MYSQL_ROOT_PASSWORD}") WHERE user='root' AND host='%'; +EOF + + if [ "$MYSQL_DATABASE" != "" ]; then + echo "[i] Creating database: $MYSQL_DATABASE" + echo "CREATE DATABASE IF NOT EXISTS \`$MYSQL_DATABASE\` CHARACTER SET utf8 COLLATE utf8_general_ci;" >> $tfile + + if [ "$MYSQL_USER" != "" ]; then + echo "[i] Creating user: $MYSQL_USER with password $MYSQL_PASSWORD" + echo "GRANT ALL ON \`$MYSQL_DATABASE\`.* to '$MYSQL_USER'@'%' IDENTIFIED BY '$MYSQL_PASSWORD';" >> $tfile + fi + fi + + /usr/bin/mysqld --user=root --bootstrap --verbose=0 < $tfile + rm -f $tfile +fi + +envsubst < config.template.yaml > config.yaml + +mysqld --user=root & while : do node index.js sleep 2 - done From 84a73eae2b39f9d65701643ddd890f98f4287276 Mon Sep 17 00:00:00 2001 From: David Siaw Date: Tue, 20 Sep 2022 21:11:58 +0000 Subject: [PATCH 2/6] remove unneeded mysql startup script --- run.sh | 54 ------------------------------------------------------ 1 file changed, 54 deletions(-) diff --git a/run.sh b/run.sh index efdc2990..68430969 100755 --- a/run.sh +++ b/run.sh @@ -1,59 +1,5 @@ #!/bin/sh -#plagiarized from wangxian/alpine-mysql -if [ -d /app/mysql ]; then - echo "[i] MySQL directory already present, skipping creation" -else - echo "[i] MySQL data directory not found, creating initial DBs" - - mysql_install_db --user=root > /dev/null - - if [ "$MYSQL_ROOT_PASSWORD" = "" ]; then - MYSQL_ROOT_PASSWORD=111111 - echo "[i] MySQL root Password: $MYSQL_ROOT_PASSWORD" - fi - - MYSQL_DATABASE=${MYSQL_DATABASE} - MYSQL_USER=${MYSQL_USER} - MYSQL_PASSWORD=${MYSQL_PASSWORD} - - if [ ! -d "/run/mysqld" ]; then - mkdir -p /run/mysqld - fi - - tfile=`mktemp` - if [ ! -f "$tfile" ]; then - return 1 - fi - - cat << EOF > $tfile -USE mysql; -FLUSH PRIVILEGES; -GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY "$MYSQL_ROOT_PASSWORD" WITH GRANT OPTION; -GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION; -DROP USER ''@'${HOSTNAME}'; -DROP USER 'root'@'${HOSTNAME}'; -DROP USER 'root'@'localhost'; -DROP USER 'root'@'127.0.0.1'; -DROP USER 'root'@'::1'; -DROP USER ''@'localhost'; -UPDATE user SET password=PASSWORD("${MYSQL_ROOT_PASSWORD}") WHERE user='root' AND host='%'; -EOF - - if [ "$MYSQL_DATABASE" != "" ]; then - echo "[i] Creating database: $MYSQL_DATABASE" - echo "CREATE DATABASE IF NOT EXISTS \`$MYSQL_DATABASE\` CHARACTER SET utf8 COLLATE utf8_general_ci;" >> $tfile - - if [ "$MYSQL_USER" != "" ]; then - echo "[i] Creating user: $MYSQL_USER with password $MYSQL_PASSWORD" - echo "GRANT ALL ON \`$MYSQL_DATABASE\`.* to '$MYSQL_USER'@'%' IDENTIFIED BY '$MYSQL_PASSWORD';" >> $tfile - fi - fi - - /usr/bin/mysqld --user=root --bootstrap --verbose=0 < $tfile - rm -f $tfile -fi - envsubst < config.template.yaml > config.yaml mysqld --user=root & From dddcdc770a3372f73f068cf8d770c3b8cc77d239 Mon Sep 17 00:00:00 2001 From: David Siaw Date: Tue, 20 Sep 2022 21:22:41 +0000 Subject: [PATCH 3/6] update dockerfile --- Dockerfile | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 31217655..5d3dc362 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,26 @@ -FROM alpine:3.6 +FROM alpine -ADD . /app +ADD bin /app/bin +ADD gdrive-userscript /app/gdrive-userscript +ADD player /app/player +ADD src /app/src +ADD templates /app/templates +ADD www /app/www +ADD .eslintrc.js /app/.eslintrc.js +ADD index.js /app/index.js +ADD package.json /app/package.json +ADD package-lock.json /app/package-lock.json +ADD postinstall.sh /app/postinstall.sh +ADD servcmd.sh.js /app/servcmd.sh.js +ADD container-install.sh /app/container-install.sh RUN cd app && sh container-install.sh -WORKDIR /app - ENV MYSQL_HOST localhost ENV MYSQL_PORT 3306 ENV MYSQL_DATABASE cytube ENV MYSQL_USER cytube ENV MYSQL_PASSWORD nico_best_girl -ENV MYSQL_ROOT_PASSWORD ruby_best_girl ENV SYNC_TITLE Sync ENV SYNC_DESCRIPTION Sync Video ENV ROOT_URL http://localhost:8080 @@ -20,12 +29,13 @@ ENV IO_ROOT_URL http://localhost ENV IO_ROOT_PORT 1337 ENV ROOT_DOMAIN localhost:8080 ENV HTTPS_ENABLED false -ENV TRUST_ALL_PROXIES false +ENV COOKIE_SECRET aaa +ENV IMMEDIATE_PROXY 172.16.0.0/12 #ENV YOUTUBE_KEY #ENV TWITCH_CLIENT_ID EXPOSE 8080 -# EXPOSE 1337 +EXPOSE 1337 # EXPOSE 8443 ADD conf /app/conf From 6e26be18eb32933db38ecf45890d0358c0e90416 Mon Sep 17 00:00:00 2001 From: David Siaw Date: Wed, 21 Sep 2022 13:45:51 +0000 Subject: [PATCH 4/6] update back to correct filters --- container-install.sh | 4 +--- package.json | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/container-install.sh b/container-install.sh index bed54da4..81e7f835 100644 --- a/container-install.sh +++ b/container-install.sh @@ -1,9 +1,7 @@ #!/bin/sh apk update -apk add build-base python git nodejs nodejs-npm mysql mysql-client curl gettext ffmpeg +apk add build-base python3 git npm mysql mysql-client curl gettext ffmpeg npm install npm@latest -g npm install npm run build-server - - diff --git a/package.json b/package.json index a1923cfb..c696bfb6 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "cookie-parser": "^1.4.5", "create-error": "^0.3.1", "csrf": "^3.1.0", - "cytubefilters": "git://github.com/davidsiaw/cytubefilters", + "cytubefilters": "github:calzoneman/cytubefilters#c67b2dab2dc5cc5ed11018819f71273d0f8a1bf5", "express": "^4.17.1", "express-minify": "^1.0.0", "json-typecheck": "^0.1.3", From 937a5d1124fbcb7a4f689e5908f86645b0d1aeb6 Mon Sep 17 00:00:00 2001 From: David Siaw Date: Sat, 22 Oct 2022 12:17:42 +0000 Subject: [PATCH 5/6] remove stray command --- run.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/run.sh b/run.sh index 68430969..037d6325 100755 --- a/run.sh +++ b/run.sh @@ -2,7 +2,6 @@ envsubst < config.template.yaml > config.yaml -mysqld --user=root & while : do node index.js From 868d3a4b689b89fdce6a2d196c4714cfcbf1c08b Mon Sep 17 00:00:00 2001 From: David Siaw Date: Sun, 23 Oct 2022 09:21:15 +0000 Subject: [PATCH 6/6] move docker docs out --- README.md | 29 +---------------------------- docs/docker.md | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 28 deletions(-) create mode 100644 docs/docker.md diff --git a/README.md b/README.md index bcd3c1e9..184d1944 100644 --- a/README.md +++ b/README.md @@ -40,34 +40,7 @@ during US daytime hours. Docker ------ -Example for using the dockerfile on this repo. - -``` -docker build -t sync . -docker network create sync - -docker run -d --name sync-db \ --e MARIADB_ROOT_PASSWORD='abcdefg123456' \ --e MARIADB_DATABASE=cytube \ --e MARIADB_USER=cytube \ --e MARIADB_PASSWORD=aaaaa \ ---network sync mariadb - -docker run -d --name sync-web \ --e MYSQL_HOST=sync-db \ --e MYSQL_PASSWORD=aaaaa \ --e ROOT_URL=https://cytube.my.domain \ --e IO_ROOT_URL=https://cytube.my.domain \ --e ROOT_DOMAIN=cytube.my.domain \ --e VIRTUAL_HOST=cytube.my.domain \ --e VIRTUAL_PORT=8080 \ --e LETSENCRYPT_HOST=cytube.my.domain \ --e YOUTUBE_KEY=abcdefg \ ---network sync sync -``` - -Feedback --------- +Instructions on how to deploy Cytube using Docker is in the `docs/docker.md` file. ## License diff --git a/docs/docker.md b/docs/docker.md new file mode 100644 index 00000000..6d5adb32 --- /dev/null +++ b/docs/docker.md @@ -0,0 +1,38 @@ +Docker +------ + +Cytube can be deployed using Docker. + +TL;DR +----- + +Example for using the dockerfile on this repo. + +``` +docker build -t sync . +docker network create sync + +docker run -d --name sync-db \ +-e MARIADB_ROOT_PASSWORD='abcdefg123456' \ +-e MARIADB_DATABASE=cytube \ +-e MARIADB_USER=cytube \ +-e MARIADB_PASSWORD=aaaaa \ +--network sync mariadb + +docker run -d --name sync-web \ +-e MYSQL_HOST=sync-db \ +-e MYSQL_PASSWORD=aaaaa \ +-e ROOT_URL=https://cytube.my.domain \ +-e IO_ROOT_URL=https://cytube.my.domain \ +-e ROOT_DOMAIN=cytube.my.domain \ +-e VIRTUAL_HOST=cytube.my.domain \ +-e VIRTUAL_PORT=8080 \ +-e LETSENCRYPT_HOST=cytube.my.domain \ +-e YOUTUBE_KEY=abcdefg \ +--network sync sync +``` + +Explanation +----------- + +TODO