You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 year ago | |
---|---|---|
.gitlab-ci.yml | 1 year ago | |
Dockerfile | 1 year ago | |
README.md | 1 year ago | |
entrypoint.sh | 1 year ago |
README.md
matrix_rss_docker
This is the docker for my matrix_rss project.
Configuration of matrix_rss
Copy config_example.json form the matrix_rss 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_rss:
image: registry.gitlab.com/mageas/matrix_rss_docker
volumes:
- ./config.json:/app/config.json
- database:/app/sled_db
environment:
- UID=1000
- GID=1000
volumes:
database:
Explanations of docker-compose:
./config.json:/app/config.json
sync your config with the containerdatabase:/app/sled_db
save your database with the hostUID=1000
change the container user idGID=1000
change the container group id
Run the container
docker-compose up -d