gistfile1.txt
· 506 B · Text
原始檔案
version: "3.8"
services:
linkstack:
hostname: 'linkstack'
image: 'linkstackorg/linkstack:latest'
environment:
TZ: 'Europe/Berlin'
SERVER_ADMIN: 'admin@example.com'
HTTP_SERVER_NAME: 'example.com'
HTTPS_SERVER_NAME: 'example.com'
LOG_LEVEL: 'info'
PHP_MEMORY_LIMIT: '256M'
UPLOAD_MAX_FILESIZE: '8M'
volumes:
- 'linkstack_data:/htdocs'
ports:
- '8188:80'
- '8190:443'
restart: unless-stopped
volumes:
linkstack_data:
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: '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 | |
23 | volumes: |
24 | linkstack_data: |
25 |