NeonLink
First, create an empty bookmarks.sqlite
file in the installation folder (i.e. /srv/disk/files/neonlink)
- Replace {80} with any port you like.
- Replace {/path/to/bookmarks.sqlite} with the absolute path to the
bookmarks.sqlite
file you created earlier. - Replace {/path/to/backgroundimages} with the path to folder with background images
Then run the docker-compose.
version: "3.8"
services:
neonlink:
image: alexscifier/neonlink
container_name: neonlink
volumes:
- ./bookmarks.sqlite:/app/db/bookmarks.sqlite
- ./background:/app/public/static/media/background
restart: unless-stopped
ports:
- "80:3333"
No Comments