Skip to content

Commit e120f84

Browse files
author
Mike Holloway
committed
Support different alert format (thanks ElfoLiNk), Errbot 6.1.2, Python 3.7.6 Alpine 3.11
1 parent 800d9a6 commit e120f84

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.6.10-alpine3.11
1+
FROM python:3.7-alpine
22
MAINTAINER Mike Holloway <[email protected]>
33

44
ARG BUILD_DATE

docker-compose-swarmstack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ configs:
2929

3030
services:
3131
errbot:
32-
image: swarmstack/errbot-docker:6.1.2
32+
image: swarmstack/errbot-docker:latest
3333
configs:
3434
- source: errbot_config
3535
target: /err/config.py

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ configs:
1717

1818
services:
1919
errbot:
20-
image: swarmstack/errbot-docker:6.1.2
20+
image: swarmstack/errbot-docker:latest
2121
configs:
2222
- source: errbot_config
2323
target: /err/config.py

provisioners/app.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ mkdir -p /err/local_plugins
1919
mkdir -p /err/local_backends
2020

2121
# Install Err itself
22-
pip install err pytest
22+
pip install errbot pytest

provisioners/base.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ echo LC_ALL="en_US.utf8" >> /etc/environment
1010
echo DEBIAN_FRONTEND="noninteractive" >> /etc/environment
1111
. /etc/environment
1212

13-
$APTINSTALL python3 python3-dev
13+
#$APTINSTALL python3.7 python3.7-dev
1414

1515
# TLS certs and sudo are needed, curl and vim are tremendously useful when entering
1616
# a container for debugging (while barely increasing image size)

0 commit comments

Comments
 (0)