Though the Docker Composes posted here generally don't need to be modified, other than the env vars -- when you want to deploy multiple containers based on the same project you do. In the case of vlc-bridge-fubo, append a "2" to the container name:
For example:
version: '3.9'
services:
vlc-bridge-fubo:
image: registry.gitlab.com/yankees4life/vlc-bridge-fubo:${TAG}
container_name: vlc-bridge-fubo2
ports:
- ${HOST_PORT}:7777 # Use the same port number the container is using, or optionally change it if the port is already in use on your host
environment:
- FUBO_USER=${FUBO_USER}
- FUBO_PASS=${FUBO_PASS}
volumes:
- vlc-bridge-fubo:/app/Config
restart: unless-stopped
volumes:
vlc-bridge-fubo:
name: ${HOST_VOLUME} # This project will store its data in /var/lib/docker/volumes/${HOST_VOLUME}. <project-name_config> is a good name choice.
# Default Environment variables can be found below under stderr -- copy and paste into Portainer-Stacks Environment variables section in Advanced mode
And sample env vars, with HOST_PORT and HOST_VOLUME modified:
TAG=latest
HOST_PORT=7778
FUBO_USER=<yourfubousername>
FUBO_PASS=<yourfubopassword>
HOST_VOLUME=vlc-bridge-fubo_config2



