-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The Dockerfile should setup a fully working environment for kippo, including optional dependencies (mysql, xmpp). To build: docker build -t kippo:latest . To use: docker run \ -it \ --rm \ --name=kippo \ -p 2222:2222 \ -v $(pwd)/log:/app/log \ -v $(pwd)/dl:/app/dl \ -v $(pwd)/data:/app/data \ -v $(pwd)/kippo.cfg:/app/kippo.cfg \ kippo With the docker-compose.yml, kippo can be run with a single command: docker-compose up To start with the optional mariadb service: docker-compose --profile with-db up All data and configuration should be kept outside the container by using volumes. The docker-compose.yml has these volumes pointing to the usual directories in the main kippo directory.
- Loading branch information
Showing
7 changed files
with
114 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# configuration shouldn't be baked into the image | ||
kippo.cfg | ||
log | ||
data | ||
dl | ||
db/mysql/data/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ __pycache__/ | |
env/ | ||
env1/ | ||
env2/ | ||
db/mysql/data/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
FROM alpine:3.15 | ||
|
||
VOLUME /app/data /app/log /app/dl /app/kippo.cfg | ||
|
||
# Create a non-root user and switch to it | ||
RUN adduser -D -H -g '' app | ||
USER app | ||
|
||
# Set the working directory in the container to /app | ||
WORKDIR /app | ||
|
||
# Copy the current directory contents into the container at /app | ||
COPY . /app | ||
|
||
# Switch back to root to install dependencies | ||
USER root | ||
|
||
RUN apk --update-cache add \ | ||
python2 \ | ||
mariadb-connector-c \ | ||
# build-dependencies can be removed at the end to save space | ||
&& apk --update-cache add --virtual build-dependencies \ | ||
git \ | ||
python2-dev \ | ||
musl-dev \ | ||
gcc \ | ||
mariadb-connector-c-dev \ | ||
# hack to make the MySQL-python build succeed | ||
&& wget -q https://raw.githubusercontent.com/paulfitz/mysql-connector-c/8c058fab669d61a14ec23c714e09c8dfd3ec08cd/include/my_config.h -O /usr/include/mysql/my_config.h \ | ||
&& sed '/st_mysql_options options;/a unsigned int reconnect;' /usr/include/mysql/mysql.h -i.bkp \ | ||
# pip doesn't seem to be available via apk | ||
&& python -m ensurepip --upgrade \ | ||
# basic kippo dependencies, including optional MySQL-python | ||
&& pip install --no-cache-dir \ | ||
zope.interface==5.5.2 \ | ||
Twisted==15.1.0 \ | ||
pycrypto==2.6.1 \ | ||
pyasn1==0.5.0 \ | ||
MySQL-python==1.2.5 \ | ||
# dependencies for XMPP support, needs this ancient custom branch | ||
&& pip install --no-cache-dir \ | ||
git+https://github.com/ralphm/wokkel/@e0a70e4b5d03a2c1c911bb2bdf5c3ef717049707 \ | ||
python-dateutil==2.8.2 \ | ||
# clean up | ||
&& apk del build-dependencies | ||
|
||
# Switch back to the non-root user | ||
USER app | ||
|
||
# Make port 2222 available to the world outside thiscontainer | ||
EXPOSE 2222 | ||
|
||
# Run twistd command when the container launches | ||
CMD ["twistd", "-n", "-y", "kippo.tac", "--pidfile", "kippo.pid"] |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
MYSQL="mariadb -u root -p$MARIADB_ROOT_PASSWORD" | ||
|
||
echo "GRANT ALL PRIVILEGES ON $MARIADB_DATABASE.* TO $MARIADB_USER;" | $MYSQL | ||
|
||
$MYSQL "$MARIADB_DATABASE" < /sql-scripts/mysql.sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# To run the kippo service, run: | ||
# docker-compose up | ||
# | ||
# The database service belongs to the "with-db" profile, so it's not run by | ||
# default. To run the kippo service with the database service, run: | ||
# docker-compose --profile with-db up | ||
# | ||
version: '3' | ||
|
||
services: | ||
kippo: | ||
image: kippo | ||
build: | ||
context: . | ||
dockerfile: ./Dockerfile | ||
container_name: kippo | ||
restart: unless-stopped | ||
ports: | ||
- "2222:2222" | ||
# logs and configuration should be kept outside the image | ||
volumes: | ||
- ./log:/app/log | ||
- ./dl:/app/dl | ||
- ./data:/app/data | ||
- ./kippo.cfg:/app/kippo.cfg | ||
kippodb: | ||
image: mariadb | ||
container_name: kippodb | ||
environment: | ||
MYSQL_ROOT_PASSWORD: rootpw | ||
MYSQL_DATABASE: kippo | ||
MYSQL_USER: kippo | ||
MYSQL_PASSWORD: kippopw | ||
volumes: | ||
- ./db/mysql/data:/var/lib/mysql | ||
- ./db/mysql/docker-initdb.d:/docker-entrypoint-initdb.d | ||
- ./doc/sql:/sql-scripts | ||
profiles: | ||
- with-db | ||
|
||
# ports: | ||
# - "3306:3306" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters