mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-16 12:13:26 +00:00
27 lines
888 B
YAML
27 lines
888 B
YAML
# [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.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
pidgin:
|
|
image: ghcr.io/linuxserver/pidgin
|
|
container_name: pidgin
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Users home directory in the container, stores local files and settings
|
|
- ${BASEDIR:-/volume1/docker}/pidgin/config:/config
|
|
ports:
|
|
# Pidgin desktop gui.
|
|
- 3000:3000
|
|
# Pidgin desktop gui HTTPS.
|
|
- 3001:3001
|
|
restart: unless-stopped
|