You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Use the official Node.js image as the base image
FROM node:16
# Set the working directory inside the container
# COPY /var/www/lib-jitsi-meet /var/www/
WORKDIR /var/www/customjitsi-meet-folder
# Copy package.json and package-lock.json to the working directory
COPY customjitsi-meet/package.json ./
# Install dependencies with legacy-peer-deps
RUN npm install --legacy-peer-deps
# Copy the rest of your application code to the working directory
COPY . .
# Remove existing lib-jitsi-meet and link the cloned one
RUN rm -rf /var/www/customjitsi-meet-folder/customjitsi-meet/node_modules/lib-jitsi-meet
# Link lib-jitsi-meet
WORKDIR /var/www/customjitsi-meet-folder/lib-jitsi-meet
RUN npm install && npm link
WORKDIR /var/www/customjitsi-meet-folder/customjitsi-meet
RUN npm link lib-jitsi-meet
# Build lib-jitsi-meet
WORKDIR /var/www/customjitsi-meet-folder/lib-jitsi-meet
RUN npm update && npm run build
# Build customjitsi-meet
WORKDIR /var/www/customjitsi-meet-folder/customjitsi-meet
RUN make
# Set environment variables if required
ENV NODE_OPTIONS="--max-old-space-size=8192"
# Build customjitsi-meet
WORKDIR /var/www/customjitsi-meet-folder
# Expose ports 80 and 443
EXPOSE 80 443
# Define the command to run your application
CMD ["npm", "start"]
`
and i am trying to replace the image like as follows
`
web:
# image: jitsi/web:${JITSI_IMAGE_VERSION:-stable-9457-2}
image: customjitsi-meet-folder
# image: jitsimeettest
restart: ${RESTART_POLICY:-unless-stopped}
# restart: always
ports:
- '8181:80'
- '8443:443'
volumes:
- ${CONFIG}/web:/config
- ${CONFIG}/web/crontabs:/var/spool/cron/crontabs:Z
- ${CONFIG}/transcripts:/usr/share/jitsi-meet/transcripts
# - /var/www/docker-jitsi-meet-stable-9457-2/web/:/usr/share/jitsi-meet
environment:
and when i run compose up -d my custom jitsi meet is not appearing in my browser
so how should i compose my custom jitsi meet ??
The text was updated successfully, but these errors were encountered:
i have cloned “GitHub - jitsi/jitsi-meet: Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.”, and customized it for my liking , now what i am trying to do is to build a docker image of my custom jitsi meet and compose it with the official dockerjitsi meet, replacing the jitsi-web-image. here is my docker file on my custum jitsi-meet
and when i run compose up -d my custom jitsi meet is not appearing in my browser
so how should i compose my custom jitsi meet ??
The text was updated successfully, but these errors were encountered: