You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
473 B
21 lines
473 B
version: "3"
|
|
|
|
services:
|
|
weechat:
|
|
image: ghcr.io/ksurl/weechat
|
|
container_name: weechat
|
|
stdin_open: true
|
|
tty: true
|
|
restart: unless-stopped
|
|
network_mode: bridge
|
|
ports:
|
|
# These ports are in format <host-port>:<container-port>
|
|
- '9000:9000' # Public HTTP Port
|
|
- '9001:9001' # Public HTTPS Port
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=UTC
|
|
volumes:
|
|
- ./config:/config
|
|
- ./downloads:/downloads |