# **matrix_piped_feed_docker** This is the docker for my [matrix_piped_feed](https://gitlab.com/Mageas/matrix_piped_feed) project. ### **Configuration of matrix_piped_feed** Copy [config_example.json](https://gitlab.com/Mageas/matrix_piped_feed/-/blob/55866cbe34b7a3dc8a4a05dd8c5fd2624222a65f/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](https://gitlab.com/Mageas/matrix_piped_feed)). ### **Configuration of docker-compose** Create a *docker-compose.yml* file in your directory. Content of docker-compose.yml: ```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](https://gitlab.com/Mageas/matrix_piped_feed_docker) to change the path of the `config.json` and `database.db3`. ### **Run the container** `docker-compose up -d`