James Jeffers 60fb8e8e08 3344 Adds keys for repositories. | 11 miesięcy temu | |
---|---|---|
.. | ||
scripts | 7 miesięcy temu | |
Dockerfile | 1 rok temu | |
Makefile | 1 rok temu | |
README.md | 1 rok temu | |
develop.yml | 6 lat temu |
This image runs a linkable Huginn instance.
There is an automated build repository on docker hub for huginn/huginn.
This was patterned after sameersbn/gitlab by ianblenke/huginn, and imported here for official generation of a docker hub auto-build image.
The scripts/init script generates a .env file containing the variables as passed as per normal Huginn documentation. The same environment variables that would be used for Heroku PaaS deployment are used by this script.
It is possible to use a separate mysql/mariadb/postgres container for the database. If you do not use a separate database container, a built-in mysql database will be started. There is an exported docker volume of /var/lib/mysql
to allow persistence of that mysql database. Please be aware that to improve security, newer versions of this docker image do not run the processes as root. If the permissions of the mounted volume are not correct (777 / chown 1001), mysql can not be started. There are no permission environment variables (GUID/PUID) for this image.
NOTE: If you do not export the volume, or use a separate database container, you cannot update Huginn without losing your data.
The scripts/init script is aware of mysql and postgres linked containers through the environment variables:
MYSQL_PORT_3306_TCP_ADDR
MYSQL_PORT_3306_TCP_PORT
and
POSTGRES_PORT_5432_TCP_ADDR
POSTGRES_PORT_5432_TCP_PORT
It is recommended to use an image that allows you to create a database via environmental variables at docker run, so the db is populated when this script runs. The offical images of the mentioned databases all support this.
Additionally, the database variables may be overridden from the above as per the standard Huginn documentation:
DATABASE_ADAPTER #(must be either 'postgresql' or 'mysql2')
DATABASE_HOST
DATABASE_PORT
When connecting to an external database and your user does not have the permission to create the Huginn database please make sure it exists and set the DO_NOT_CREATE_DATABASE
environment variable.
This script will run database migrations (rake db:migrate) which should be idempotent.
It will also seed the database (rake db:seed) unless this is defined:
DO_NOT_SEED
This same seeding initially defines the "admin" user with a default password of "password" as per the standard Huginn documentation.
You can customize the admin account name with the environment variable SEED_USERNAME
and SEED_PASSWORD
.
If you do not wish to have the default 6 agents, you will want to set the above environment variable after your initially deploy, otherwise they will be added automatically the next time a container pointing at the database is spun up.
The CMD launches Huginn via the scripts/init script. This may become the ENTRYPOINT later. It does take under a minute for Huginn to come up. Use environmental variables that match your DB's creds to ensure it works.
Simple stand-alone usage (use only for testing/evaluation as it can not be updated without losing data):
docker run -it -p 3000:3000 ghcr.io/huginn/huginn
Use a volume to export the data of the internal mysql server:
docker run --rm -it -p 3000:3000 -v /home/huginn/mysql-data:/var/lib/mysql ghcr.io/huginn/huginn
To link to another mysql container, for example:
docker run --name huginn_mysql \
-e MYSQL_DATABASE=huginn \
-e MYSQL_USER=huginn \
-e MYSQL_PASSWORD=somethingsecret \
-e MYSQL_ROOT_PASSWORD=somethingevenmoresecret \
mysql
docker run --rm --name huginn \
--link huginn_mysql:mysql \
-p 3000:3000 \
-e HUGINN_DATABASE_NAME=huginn \
-e HUGINN_DATABASE_USERNAME=huginn \
-e HUGINN_DATABASE_PASSWORD=somethingsecret \
ghcr.io/huginn/huginn
To link to another container named 'postgres':
docker run --name huginn_postgres \
-e POSTGRES_PASSWORD=mysecretpassword \
-e POSTGRES_USER=huginn -d postgres
docker run --rm --name huginn \
--link huginn_postgres:postgres \
-p 3000:3000 \
-e HUGINN_DATABASE_USERNAME=huginn \
-e HUGINN_DATABASE_PASSWORD=mysecretpassword \
-e HUGINN_DATABASE_ADAPTER=postgresql \
ghcr.io/huginn/huginn
To use a separate, non-linked mysql container:
docker run --rm --name huginn \
-p 3000:3000 \
-e HUGINN_DATABASE_NAME=huginn \
-e HUGINN_DATABASE_USERNAME=huginn \
-e HUGINN_DATABASE_PASSWORD=mysecretpassword \
-e HUGINN_DATABASE_HOST=myname.mydomain \
-e HUGINN_DATABASE_PORT=3306
ghcr.io/huginn/huginn
The docker/multi-process
folder also has a docker-compose.yml
that allows for a sample database formation with a data volume container:
cd docker/multi-process
docker-compose up
Other Huginn 12factored environment variables of note are generated and put into the .env file as per Huginn documentation. All variables of the .env.example can be used to override the defaults which a read from the current .env.example
.
For variables in the .env.example that are commented out, the default is to not include that variable in the generated .env file.
In newer versions of Docker you are able to pass your own .env file in to the container with the --env-file
parameter.
You don't need to do this on your own, because there is an automated build for this repository, but if you really want run this command in the Huginn root directory:
docker build --rm=true --tag={yourname}/huginn -f docker/multi-process/Dockerfile .
The source is available on GitHub.
Please feel free to submit pull requests and/or fork at your leisure.