Moved to _dev

This commit is contained in:
2025-09-20 16:11:47 +02:00
parent fb1a8753b7
commit b2ba11fcd3
1670 changed files with 224899 additions and 0 deletions

49
seafile/compose.yaml Normal file
View File

@@ -0,0 +1,49 @@
volumes:
db:
name: seafile-mysql
data:
name: seafile-data
networks:
seafile-net:
services:
db:
image: mariadb:10.11
container_name: seafile-mysql
environment:
- MYSQL_ROOT_PASSWORD=transatlantique
- MYSQL_LOG_CONSOLE=true
volumes:
- db:/var/lib/mysql
networks:
- seafile-net
memcached:
image: memcached:1.6.18
container_name: seafile-memcached
entrypoint: memcached -m 256
networks:
- seafile-net
seafile:
image: seafileltd/seafile-mc:latest
container_name: seafile
ports:
- 34358:80
- 34359:443
volumes:
- data:/shared
environment:
- DB_HOST=db
- DB_ROOT_PASSWD=transatlantique
- TIME_ZONE=Europe/Paris
- SEAFILE_ADMIN_EMAIL=admin@delmar.bzh
- SEAFILE_ADMIN_PASSWORD=thrive-dwelled-flanked
- SEAFILE_SERVER_LETSENCRYPT=false
- SEAFILE_SERVER_HOSTNAME=sfl.delmar.bzh
depends_on:
- db
- memcached
networks:
- seafile-net