Skip to content

Commit 4909799

Browse files
committed
Create docker-compose.yml
1 parent eebcca1 commit 4909799

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

docker-compose.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)