This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
Tileboard docker install #868
Unanswered
StephenMilner
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi.
My docker-compose.yml looks like this
Apologies for not using the code markup - It seems to loose all the linefeeds if I use the markers
services:
tileboard:
image: tileboard/tileboard:latest
restart: unless-stopped
ports:
- 9000:80
volumes:
- ./config.js:/usr/share/nginx/html/config.js
- ./styles/custom.css:/tileboard/styles/custom.css
I'm not sure if the volume settings are correct.
The first one seem very odd - Probably something I copied from somewhere else mucked something up.
I added the last volume in an attempt to get custom.css working, but I don't seem to be having much joy.
I've followed the recipe mention here:
#867
And I've got everything working bar the custom colours.
This is my custom.css:
.-agile-rates .item-list--name .mdi-arrow-up-box {
color: rgb(243, 23, 0);
}
.-agile-rates .item-list--name .mdi-checkbox-blank {
color: rgb(255, 192, 0);
}
.-agile-rates .item-list--name .mdi-arrow-down-box {
color: rgb(55, 180, 0);
}
.-agile-rates .item-list--name .mdi-circle-box {
color: rgb(82, 127, 250);
}
I've modified my TEXT_LIST type with the following extra line:
type: TYPES.TEXT_LIST,
classes: ['-agile-rates'],
If anyone has any pointers that would be great
Beta Was this translation helpful? Give feedback.
All reactions