Create docker-compose.yml

This commit is contained in:
Julian Prieber 2023-05-10 14:56:32 +02:00
parent eebcca1a41
commit 49097991f6

25
docker-compose.yml Normal file
View file

@ -0,0 +1,25 @@
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: