This commit is contained in:
myve 2024-08-10 09:07:11 +00:00
commit e650d80b1e
58 changed files with 1747 additions and 0 deletions

11
linkstack/.env Normal file
View file

@ -0,0 +1,11 @@
# Environment file for docker-compose.yaml
# Generate new passwords with:
# openssl rand -hex 32
# Fill in registry
REGISTRY=
# Linkstack
LINKSTACK_PORT=
LINKSTACK_ADMIN=
LINKSTACK_DOMAIN=

View file

@ -0,0 +1,25 @@
services:
# https://github.com/LinkStackOrg/linkstack-docker/blob/main/docker-compose.yml
linkstack:
image: ${REGISTRY}/linkstack
container_name: linkstack
restart: unless-stopped
ports:
- ${LINKSTACK_PORT:-443}:443
environment:
TZ: UTC
SERVER_ADMIN: ${LINKSTACK_ADMIN:-admin}
HTTP_SERVER_NAME: ${LINKSTACK_DOMAIN:-localhost}
HTTPS_SERVER_NAME: ${LINKSTACK_DOMAIN:-localhost}
LOG_LEVEL: info
PHP_MEMORY_LIMIT: 8G
UPLOAD_MAX_FILESIZE: 2G
volumes:
- ./data:/htdocs
networks:
- linkstack
networks:
linkstack:
external: false