Changing Favicon (Using Docker) #3371
Replies: 8 comments 9 replies
-
Just bind mount the |
Beta Was this translation helpful? Give feedback.
-
It's better make via docker-compose.yaml
Regards! |
Beta Was this translation helpful? Give feedback.
-
I'm also using Docker via DigitalOcean droplet and I'm not super familiar with how to get to a folder in the app, from Linux. I am able to login to my wiki.js instance via SSH following these instructions. I just don't know what to do next. Can someone provide the commands I should enter to get to this /wiki/assets/favicons/ folder, and how to substitute the default favicon with our new one? |
Beta Was this translation helpful? Give feedback.
-
@jord8on You need to know how your container is started - via |
Beta Was this translation helpful? Give feedback.
-
@jord8on This works with the Digital Ocean droplet. Skip the line with
|
Beta Was this translation helpful? Give feedback.
-
I can't get this to work, either. I'm using docker-compose/Portainer and Wiki.js 2.5.294. I have tried adding both...
and
Have the favicon(s) and/or path changed? |
Beta Was this translation helpful? Give feedback.
-
In db:
image: postgres:11-alpine
environment:
POSTGRES_DB: wiki
POSTGRES_PASSWORD: ******
POSTGRES_USER: wikijs
logging:
driver: "none"
restart: unless-stopped
volumes:
- db-data:/var/lib/postgresql/data
wiki:
image: ghcr.io/requarks/wiki:2
depends_on:
- db
environment:
DB_TYPE: postgres
DB_HOST: db
DB_PORT: 5432
DB_USER: wikijs
DB_PASS: ******
DB_NAME: wiki
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- /www/wwwroot/wiki/favicons:/wiki/assets/favicons
- /www/wwwroot/wiki/favicon.ico:/wiki/assets/favicon.ico
volumes:
db-data: I have already create all icon files in my host. And chown to 1000:1000, but didn't work. I try |
Beta Was this translation helpful? Give feedback.
-
I found an easy workaround until this feature gets implemented in V3:
|
Beta Was this translation helpful? Give feedback.
-
We are running Wiki.js through a docker container. How can the favicon be changed? I don't want to risk changing it manually by going into the docker container files, and I can't seem to find an option to change it within the site itself. Help!
Host Info:
OS: Ubuntu 18.04, Docker
Wiki.js version: Latest
Beta Was this translation helpful? Give feedback.
All reactions