26 lines
618 B
YAML
26 lines
618 B
YAML
# Volumes listed below connect volumes to
|
|
# network storage. These can be altered to
|
|
# your setup, or changed to local folders.
|
|
|
|
---
|
|
version: '3.3'
|
|
services:
|
|
komga:
|
|
image: gotson/komga:latest
|
|
container_name: komga
|
|
volumes:
|
|
- ./config:/config
|
|
- nas-komga:/data
|
|
ports:
|
|
- 25600:25600
|
|
user: "1000:1000"
|
|
# remove the whole environment section if you don't need it
|
|
environment:
|
|
- TZ=America/Denver
|
|
restart: unless-stopped
|
|
volumes:
|
|
nas-komga:
|
|
driver_opts:
|
|
type: cifs
|
|
o: "username=USER,password=PASSWORD"
|
|
device: "//ip-address/share/folder" |