13 Commits

Author SHA1 Message Date
ezkrg
043bd98700 increase gid and uid 2018-08-21 11:14:43 +02:00
ezkrg
0bc1103787 use single run to decrease layers 2018-08-21 11:07:26 +02:00
ezkrg
9cde1af86e add needo37's work to changelog 2018-08-21 11:07:00 +02:00
ezkrg
bdf63fa9ec Merge pull request #3 from needo37/master
Add discord plugin
2018-08-21 10:57:45 +02:00
needo37
7841a2eb47 Running things as root is bad. 2018-08-21 00:31:42 -05:00
needo37
38af27f938 Update Dockerfile 2018-08-20 23:28:31 -05:00
ezkrg
410ad024fc add Waester's work to changelog 2018-08-17 18:11:38 +02:00
ezkrg
f5e593e5bb Merge pull request #2 from Waester/sipe
Add libsipe support
2018-08-17 17:48:58 +02:00
Waester
93a5e48800 Add libsipe support 2018-08-17 17:11:07 +02:00
ezkrg
2ca308d8cb Merge pull request #1 from friek/master
Added documentation
2018-04-20 10:58:54 +02:00
Johan Mulder
badb9c84d9 Fixed spelling error 2018-04-19 23:12:12 +02:00
Johan Mulder
f5e51e6f6b Deleted run away sentence. 2018-04-19 23:04:44 +02:00
Johan Mulder
68f17f04cc Added documentation in README.md. Moved changelog to CHANGELOG.md 2018-04-19 23:02:49 +02:00
3 changed files with 163 additions and 71 deletions

37
CHANGELOG.md Normal file
View File

@@ -0,0 +1,37 @@
# Changelog
## 2018-08-21 10:59:17 (needo37)
- add discord plugin
- run as bitlbee user
## 2018-08-17 17:59:13 (Waester)
- add libsipe support
## 2018-04-19 23:01:49 (friek)
- updated README
- moved changelog to CHANGELOG.md
## 2018-04-19 14:17:23
- use alpine 3.7
- add slack-libpurple
## 2017-09-18 12:30:45
- trigger rebuild related to https://github.com/bitlbee/bitlbee-facebook/issues/151
## 2017-07-30 20:52:55
- adding purple-hangouts
## 2017-07-29 18:14:51
- using alpine 3.6
- remove libpurple-ymsg
- adding telegram-purple
## 2017-04-21 12:57:42
- trigger rebuild
## 2017-04-04 12:59:58
- trigger rebuild cause of facebook fix
## 2017-03-30 11:43:46
- trigger rebuild cause of facebook fix

View File

@@ -2,7 +2,9 @@ FROM alpine:3.7
ENV BITLBEE_VERSION 3.5.1 ENV BITLBEE_VERSION 3.5.1
RUN apk add --no-cache --update libpurple \ RUN addgroup -g 101 -S bitlbee \
&& adduser -u 101 -D -S -G bitlbee bitlbee \
&& apk add --no-cache --update libpurple \
libpurple-xmpp \ libpurple-xmpp \
libpurple-oscar \ libpurple-oscar \
libpurple-bonjour \ libpurple-bonjour \
@@ -30,6 +32,7 @@ RUN apk add --no-cache --update libpurple \
glib-dev \ glib-dev \
protobuf-c-dev \ protobuf-c-dev \
mercurial \ mercurial \
libxml2-dev \
&& cd /tmp \ && cd /tmp \
&& git clone https://github.com/bitlbee/bitlbee.git \ && git clone https://github.com/bitlbee/bitlbee.git \
&& cd bitlbee \ && cd bitlbee \
@@ -77,6 +80,22 @@ RUN apk add --no-cache --update libpurple \
&& make \ && make \
&& make install \ && make install \
&& strip /usr/lib/purple-2/libslack.so \ && strip /usr/lib/purple-2/libslack.so \
&& cd /tmp \
&& git clone https://github.com/tieto/sipe.git \
&& cd sipe \
&& ./autogen.sh \
&& ./configure --build=x86_64-alpine-linux-musl --host=x86_64-alpine-linux-musl --prefix=/usr \
&& make \
&& make install \
&& strip /usr/lib/purple-2/libsipe.so \
&& cd /tmp \
&& git clone https://github.com/sm00th/bitlbee-discord.git \
&& cd bitlbee-discord \
&& ./autogen.sh \
&& ./configure --build=x86_64-alpine-linux-musl --host=x86_64-alpine-linux-musl --prefix=/usr \
&& make \
&& make install \
&& strip /usr/lib/bitlbee/discord.so \
&& rm -rf /tmp/* \ && rm -rf /tmp/* \
&& rm -rf /usr/include/bitlbee \ && rm -rf /usr/include/bitlbee \
&& rm -f /usr/lib/pkgconfig/bitlbee.pc \ && rm -f /usr/lib/pkgconfig/bitlbee.pc \
@@ -84,4 +103,6 @@ RUN apk add --no-cache --update libpurple \
EXPOSE 6667 EXPOSE 6667
ENTRYPOINT [ "/usr/sbin/bitlbee", "-F", "-n" ] USER bitlbee
CMD [ "/usr/sbin/bitlbee", "-F", "-n" ]

View File

@@ -1,26 +1,60 @@
# docker-bitlbee-libpurple # docker-bitlbee-libpurple
## 2018-04-19 14:17:23 This docker image includes bitlbee with a bunch of useful plugins, the most
- use alpine 3.7 significant being the [libpurple Slack plugin](https://github.com/dylex/slack-libpurple).
- add slack-libpurple
## 2017-09-18 12:30:45 As Slack is turning off its IRC gateway on May 15 2018, now is the time to
- trigger rebuild related to https://github.com/bitlbee/bitlbee-facebook/issues/151 spin up your own docker image and start using bitlbee instead.
## 2017-07-30 20:52:55 ## Building and running the image
- adding purple-hangouts Build the image and tag it:
```bash
docker build -t bitlbee:latest .
```
## 2017-07-29 18:14:51 Then run it:
- using alpine 3.6 ```bash
- remove libpurple-ymsg docker run -p 6667:6667 --name bitlbee -v /local/path/to/configurations:/var/lib/bitlbee \
- adding telegram-purple --restart=always --detach bitlbee:latest
```
## 2017-04-21 12:57:42 The local path to the configurations will contain the configuration as saved by
- trigger rebuild bitlbee. It is advisable to do so, as your configuration will be gone when
the docker image gets deleted.
## 2017-04-04 12:59:58 ## Setting up a Slack account
- trigger rebuild cause of facebook fix Connect with your IRC client to the host running the image. Then register with a password in the &bitlbee channel:
```
/join &bitlbee
register <your password>
```
## 2017-03-30 11:43:46 Then, go to [the Slack legacy token site](https://api.slack.com/custom-integrations/legacy-tokens) to acquire
- trigger rebuild cause of facebook fix an API token, which is necessary in order to log in.
Copy the token, register your slack account in bitlbee and enable the account:
```
account add slack yourusername@whatever.slack.com thetoken
account on
```
This should log your account in right away:
```
<@root> Trying to get all accounts connected...
<@root> slack - Logging in: Requesting RTM
<@root> slack - Logging in: Connecting to RTM
<@root> slack - Logging in: RTM Connected
<@root> slack - Logging in: Loading Users
<@root> slack - Logging in: Loading conversations
<@root> slack - Logging in: Logged in
```
By default, none of the channels you normally reside in will be joined. To join them, you first need to add them:
```
<@you> chat add slack general
<@root> Chatroom successfully added.
```
Don't add the leading #. Adding private channels works the same way as public channels, both without the leading #.
Now, join the channel with /join #channnelname and you'll be good to go.