You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
714 B
YAML
32 lines
714 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
linkding:
|
|
labels:
|
|
ie.cianhatton.backup.enabled: "true"
|
|
container_name: linkding
|
|
image: sissbruecker/linkding:latest
|
|
ports:
|
|
- "9090:9090"
|
|
volumes:
|
|
- "data:/etc/linkding/data"
|
|
restart: unless-stopped
|
|
minio:
|
|
image: minio/minio:latest
|
|
container_name: minio
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
volumes:
|
|
- minio_storage:/data
|
|
environment:
|
|
MINIO_ROOT_USER: minio
|
|
MINIO_ROOT_PASSWORD: "*!3^wYe&dJ2H9D9aDC68Gh6!v7ydB^eK5G^"
|
|
MINIO_API_ROOT_ACCESS: "on"
|
|
MINIO_BROWSER_REDIRECT_URL: http://127.0.0.1:9000
|
|
|
|
command: server --console-address ":9001" /data
|
|
volumes:
|
|
data:
|
|
minio_storage:
|