first commit

This commit is contained in:
2024-06-03 18:43:35 +02:00
parent 2da01a3f6e
commit f501d519af
883 changed files with 71550 additions and 2 deletions

1
dockers/cachet/.env Symbolic link
View File

@ -0,0 +1 @@
../../config/dockers.env

View File

@ -0,0 +1,47 @@
version: "3"
services:
cachet:
# ports:
# - 8085:8000
image: cachethq/docker
container_name: ${cachetServName}
restart: ${restartPolicy}
depends_on:
- db
networks:
- cachetNet
links:
- db:db
environment:
- DB_HOST=db
- APP_ENV=${APP_ENV:-production}
- APP_LOG=errorlog
- APP_DEBUG=false
- DEBUG=false
env_file:
- ../../secret/env-${cachetServName}
db:
image: mariadb:10.5
container_name: ${cachetDBName}
restart: ${restartPolicy}
networks:
- cachetNet
env_file:
- ../../secret/env-${cachetDBName}
volumes:
#- ./initdb.d:/docker-entrypoint-initdb.d:ro
- cachetDB:/var/lib/mysql
- /home/sauve/:/svg/
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
volumes:
cachetDB:
networks:
cachetNet:
external: true
name: cachetNet