We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eebcca1 commit 4909799Copy full SHA for 4909799
docker-compose.yml
@@ -0,0 +1,25 @@
1
+version: "3.8"
2
+
3
+services:
4
5
+ linkstack:
6
+ hostname: 'linkstack'
7
+ image: 'linkstackorg/linkstack:latest'
8
+ environment:
9
+ TZ: 'Europe/Berlin'
10
+ SERVER_ADMIN: '[email protected]'
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
23
+volumes:
24
+ linkstack_data:
25
0 commit comments