mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 09:01:38 +00:00
Normalize line endings
This commit is contained in:
parent
c7212ed1ce
commit
d725d654a3
22
.github/renovate.json
vendored
22
.github/renovate.json
vendored
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"extends": ["config:base"],
|
"extends": ["config:base"],
|
||||||
"separateMajorMinor": true,
|
"separateMajorMinor": true,
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"datasources": ["docker"],
|
"datasources": ["docker"],
|
||||||
"packageNames": ["ubuntu"],
|
"packageNames": ["ubuntu"],
|
||||||
"pinDigests": true
|
"pinDigests": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
20
.github/stale.yml
vendored
20
.github/stale.yml
vendored
|
@ -1,11 +1,11 @@
|
||||||
daysUntilStale: 60
|
daysUntilStale: 60
|
||||||
daysUntilClose: 7
|
daysUntilClose: 7
|
||||||
exemptLabels:
|
exemptLabels:
|
||||||
- pinned
|
- pinned
|
||||||
- security
|
- security
|
||||||
staleLabel: wontfix
|
staleLabel: wontfix
|
||||||
markComment: >
|
markComment: >
|
||||||
This issue has been automatically marked as stale because it has not had
|
This issue has been automatically marked as stale because it has not had
|
||||||
recent activity. It will be closed if no further activity occurs. Thank you
|
recent activity. It will be closed if no further activity occurs. Thank you
|
||||||
for your contributions.
|
for your contributions.
|
||||||
closeComment: false
|
closeComment: false
|
|
@ -1,79 +1,79 @@
|
||||||
version: '3.8'
|
version: '3.8'
|
||||||
services:
|
services:
|
||||||
seafile-server:
|
seafile-server:
|
||||||
image: ggogel/seafile-server:11.0.1
|
image: ggogel/seafile-server:11.0.1
|
||||||
volumes:
|
volumes:
|
||||||
- seafile-data:/shared
|
- seafile-data:/shared
|
||||||
environment:
|
environment:
|
||||||
- DB_HOST=db
|
- DB_HOST=db
|
||||||
- DB_ROOT_PASSWD=db_dev
|
- DB_ROOT_PASSWD=db_dev
|
||||||
- TIME_ZONE=Europe/Berlin
|
- TIME_ZONE=Europe/Berlin
|
||||||
- HTTPS=true
|
- HTTPS=true
|
||||||
- SEAFILE_SERVER_HOSTNAME=seafile.mydomain.com # Mandatory on first deployment!
|
- SEAFILE_SERVER_HOSTNAME=seafile.mydomain.com # Mandatory on first deployment!
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
- memcached
|
- memcached
|
||||||
- seafile-caddy
|
- seafile-caddy
|
||||||
networks:
|
networks:
|
||||||
- seafile-net
|
- seafile-net
|
||||||
|
|
||||||
seahub:
|
seahub:
|
||||||
image: ggogel/seahub:11.0.1
|
image: ggogel/seahub:11.0.1
|
||||||
volumes:
|
volumes:
|
||||||
- seafile-data:/shared
|
- seafile-data:/shared
|
||||||
- seahub-avatars:/shared/seafile/seahub-data/avatars
|
- seahub-avatars:/shared/seafile/seahub-data/avatars
|
||||||
- seahub-custom:/shared/seafile/seahub-data/custom
|
- seahub-custom:/shared/seafile/seahub-data/custom
|
||||||
environment:
|
environment:
|
||||||
- SEAFILE_ADMIN_EMAIL=me@example.com
|
- SEAFILE_ADMIN_EMAIL=me@example.com
|
||||||
- SEAFILE_ADMIN_PASSWORD=asecret
|
- SEAFILE_ADMIN_PASSWORD=asecret
|
||||||
depends_on:
|
depends_on:
|
||||||
- seafile-server
|
- seafile-server
|
||||||
- seafile-caddy
|
- seafile-caddy
|
||||||
- seahub-media
|
- seahub-media
|
||||||
networks:
|
networks:
|
||||||
- seafile-net
|
- seafile-net
|
||||||
|
|
||||||
seahub-media:
|
seahub-media:
|
||||||
image: ggogel/seahub-media:11.0.1
|
image: ggogel/seahub-media:11.0.1
|
||||||
volumes:
|
volumes:
|
||||||
- seahub-avatars:/usr/share/caddy/media/avatars
|
- seahub-avatars:/usr/share/caddy/media/avatars
|
||||||
- seahub-custom:/usr/share/caddy/media/custom
|
- seahub-custom:/usr/share/caddy/media/custom
|
||||||
depends_on:
|
depends_on:
|
||||||
- seafile-caddy
|
- seafile-caddy
|
||||||
networks:
|
networks:
|
||||||
- seafile-net
|
- seafile-net
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: mariadb:10.11.5
|
image: mariadb:10.11.5
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_ROOT_PASSWORD=db_dev
|
- MYSQL_ROOT_PASSWORD=db_dev
|
||||||
- MYSQL_LOG_CONSOLE=true
|
- MYSQL_LOG_CONSOLE=true
|
||||||
- MARIADB_AUTO_UPGRADE=true
|
- MARIADB_AUTO_UPGRADE=true
|
||||||
volumes:
|
volumes:
|
||||||
- seafile-mariadb:/var/lib/mysql
|
- seafile-mariadb:/var/lib/mysql
|
||||||
networks:
|
networks:
|
||||||
- seafile-net
|
- seafile-net
|
||||||
|
|
||||||
memcached:
|
memcached:
|
||||||
image: memcached:1.6.22
|
image: memcached:1.6.22
|
||||||
entrypoint: memcached -m 1024
|
entrypoint: memcached -m 1024
|
||||||
networks:
|
networks:
|
||||||
- seafile-net
|
- seafile-net
|
||||||
|
|
||||||
seafile-caddy:
|
seafile-caddy:
|
||||||
image: ggogel/seafile-caddy:2.7.5
|
image: ggogel/seafile-caddy:2.7.5
|
||||||
ports:
|
ports:
|
||||||
- "80:80" # Point your reverse proxy to port 80 of this service
|
- "80:80" # Point your reverse proxy to port 80 of this service
|
||||||
networks:
|
networks:
|
||||||
- seafile-net
|
- seafile-net
|
||||||
- default
|
- default
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
seafile-net:
|
seafile-net:
|
||||||
internal: true
|
internal: true
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
seafile-data:
|
seafile-data:
|
||||||
seafile-mariadb:
|
seafile-mariadb:
|
||||||
seahub-avatars:
|
seahub-avatars:
|
||||||
seahub-custom:
|
seahub-custom:
|
Loading…
Reference in a new issue