initial check-in

This commit is contained in:
Radar231 2023-07-04 21:26:59 -04:00
commit 98f81e8555
2 changed files with 43 additions and 0 deletions

20
README.md Normal file
View File

@ -0,0 +1,20 @@
# linkding docker deployment
## Introduction
This is a docker-compose configuration to deploy a linkding container.
This configuration requires an instance of nginx-proxy-manager to act as a
reverse proxy for the site.
## Links
* https://github.com/sissbruecker/linkding
## Directories
<pre>
docker_linkding/
└── data
</pre>

23
docker-compose.yml Normal file
View File

@ -0,0 +1,23 @@
---
version: '3'
services:
linkding:
container_name: linkding
image: sissbruecker/linkding:latest
# when used with nginx-proxy-manager, we don't need to expose
# any ports, and npm connects to the container's port
# ports:
# - '9090:9090'
volumes:
- ./data:/etc/linkding/data
# env_file:
# - .env
restart: unless-stopped
networks:
default:
external: true
name: npm-backend
# EOF