Docker image for WeeChat
- Based on alpine
docker run -d \
--name=CONTAINER_NAME \
-v HOST_DOWNLOADS:/downloads \
-v HOST_CONFIG:/config \
-e PUID=1000
-e PGID=1000
-e TZ=UTC \
ghcr.io/ksurl/weechat
services:
weechat:
image: ghcr.io/ksurl/weechat
container_name: weechat
network_mode: bridge
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- ./config:/config
- ./downloads:/downloads
restart: unless-stopped
Parameter | Function | Default |
---|---|---|
-e PUID |
Set uid | 1000 |
-e PGID |
Set gid | 1000 |
-e TZ |
Specify a timezone to use | UTC |
-v /config |
Config folder goes here | |
-v /downloads |
Downloads go here |