Go to file
Mageas 3f20696cda
Remove dummy echo
2021-12-04 19:15:55 +01:00
.gitlab-ci.yml Add .gitlab-ci.yml 2021-12-04 17:32:59 +00:00
Dockerfile Initial commit 2021-12-04 18:29:44 +01:00
README.md Initial commit 2021-12-04 18:29:44 +01:00
entrypoint.sh Remove dummy echo 2021-12-04 19:15:55 +01:00

README.md

matrix_piped_feed_docker

This is the docker for my matrix_piped_feed project.

Configuration of matrix_piped_feed

Copy config_example.json form the matrix_piped_feed project as config.json in your directory.

Update config.json with your informations (for more informations about the config.json here).

Configuration of docker-compose

Create a docker-compose.yml file in your directory.

Content of docker-compose.yml:

version: '3.5'
services:
  matrix_piped_feed:
    image: registry.gitlab.com/mageas/matrix_piped_feed_docker
    volumes:
      - ./config.json:/app/config.json
      - database:/app/db
    environment:
      - UID=1000
      - GID=1000
      - MATRIX_PIPED_FEED__DATABASE=/app/db/database.db3

volumes:
  database:

Explanations of docker-compose:

  • ./config.json:/app/config.json sync your config with the container
  • database:/app/sled_db save your database with the host
  • UID=1000 change the container user id
  • GID=1000 change the container group id
  • MATRIX_PIPED_FEED__DATABASE=/app/db/database.db3 change de database directory to map it with the host

Check matrix_piped_feed to change the path of the config.json and database.db3.

Run the container

docker-compose up -d