Utoljára aktív 1687739223

Self-hosted open-source Linktree alternative

gistfile1.txt Eredeti
1version: "3.8"
2
3services:
4
5 linkstack:
6 hostname: 'linkstack'
7 image: 'linkstackorg/linkstack:latest'
8 environment:
9 TZ: 'Europe/Berlin'
10 SERVER_ADMIN: 'admin@example.com'
11 HTTP_SERVER_NAME: 'example.com'
12 HTTPS_SERVER_NAME: 'example.com'
13 LOG_LEVEL: 'info'
14 PHP_MEMORY_LIMIT: '256M'
15 UPLOAD_MAX_FILESIZE: '8M'
16 volumes:
17 - 'linkstack_data:/htdocs'
18 ports:
19 - '8188:80'
20 - '8190:443'
21 restart: unless-stopped
22
23volumes:
24 linkstack_data:
25