2021-05-16 00:58:19 +00:00
|
|
|
# [Pidgin](https://pidgin.im/) is a chat program which lets you log into
|
|
|
|
# accounts on multiple chat networks simultaneously. This means that you can be
|
|
|
|
# chatting with friends on XMPP and sitting in an IRC channel at the same time.
|
|
|
|
|
|
|
|
source ./.env
|
|
|
|
docker run -d \
|
|
|
|
--name=pidgin \
|
2022-04-02 00:45:58 +00:00
|
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
2021-05-16 00:58:19 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
|
|
|
-p 3000:3000 `# Pidgin desktop gui.` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/pidgin/config:/config `# Users home directory in the container, stores local files and settings` \
|
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/pidgin
|