mirror of
https://git.myvelabs.com/docker/docker-compose.yaml.git
synced 2025-12-17 21:26:17 +00:00
Reboot
This commit is contained in:
parent
b7336a277f
commit
e650d80b1e
58 changed files with 1747 additions and 0 deletions
11
linkstack/.env
Normal file
11
linkstack/.env
Normal 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=
|
||||
25
linkstack/docker-compose.yaml
Normal file
25
linkstack/docker-compose.yaml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue