23 lines
479 B
YAML
23 lines
479 B
YAML
version: "3.7"
|
|
services:
|
|
kopia:
|
|
image: kopia/kopia:latest
|
|
container_name: kopia
|
|
restart: unless-stopped
|
|
ports:
|
|
- "51515:51515"
|
|
volumes:
|
|
- ./config:/app/config
|
|
- ./cache:/app/cache
|
|
- /mnt/nextcloud:/data:ro
|
|
environment:
|
|
- KOPIA_PASSWORD=kopia123
|
|
command:
|
|
- server
|
|
- start
|
|
- --address=0.0.0.0:51515
|
|
- --insecure
|
|
- --ui
|
|
- --server-username=admin
|
|
- --server-password=Jogiocsi1211+
|