You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
1.1 KiB
Bash

# [Synclounge](https://github.com/samcm/synclounge) is a third party tool that
# allows you to watch Plex in sync with your friends/family, wherever you are.
. ./.env
docker run -d \
--name=synclounge \
-e AUTH_LIST=plexuser1,plexuser2,email1,machineid1 `# optional` `# If set, only the users defined here and the users of the plex servers defined here will be able to access the server. Use e-mails, plex usernames and/or plex server machine ids, comma separated, no spaces.` \
-e AUTOJOIN_ENABLED=false `# optional` `# DEPRECATED - (Still works but will be removed in the future in favor of the built-in var `autojoin__room`) - Set to `true` to let users autojoin the server and a room (specified by the `AUTOJOIN_ROOM` var).` \
-e AUTOJOIN_ROOM=roomname `# optional` `# DEPRECATED - (Still works but will be removed in the future in favor of the built-in var `autojoin__room`) - Set the room name for auto joining (requires `AUTOJOIN_ENABLED` set to `true`).` \
-p 8088:8088 `# Web app and server port` \
--restart unless-stopped \
ghcr.io/linuxserver/synclounge