mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
15 lines
688 B
Bash
15 lines
688 B
Bash
# [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 \
|
|
-e PUID=${PUID:-1024} `# for UserID` \
|
|
-e PGID=${PGID:-100} `# for GroupID` \
|
|
-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
|