Added bokstack, gitea, komga and nextcloud

This commit is contained in:
2024-01-14 10:38:12 +01:00
commit 9bd12ec585
9 changed files with 260 additions and 0 deletions

23
komga/docker-compose.yaml Normal file
View File

@@ -0,0 +1,23 @@
---
version: '3.3'
services:
komga:
image: gotson/komga
container_name: komga
volumes:
- type: bind
source: /mnt/komga/config
target: /config
- type: bind
source: /mnt/komga/data
target: /data
- type: bind
source: /etc/timezone #alternatively you can use a TZ environment variable, like TZ=Europe/London
target: /etc/timezone
read_only: true
ports:
- 25600:25600
environment:
- JAVA_TOOL_OPTIONS=-Xmx4g
user: "1000:1000"
restart: unless-stopped