1
0

linkace: add

This commit is contained in:
2023-09-15 13:17:14 +02:00
parent b75a45c02e
commit adeec89fd9
3 changed files with 35 additions and 2 deletions

View File

@ -693,8 +693,6 @@ services:
profiles:
- base
- infra
gitea:
container_name: gitea
@ -728,6 +726,34 @@ services:
- base
- infra
restart: unless-stopped
linkace:
image: linkace/linkace:simple
container_name: linkace
networks:
- public
- mariadb
- redis
env_file:
- linkace.env
environment:
- DB_CONNECTION=mysql
- DB_HOST=${MYSQL_SERVER}
- DB_PORT=${MYSQL_PORT}
- DB_DATABASE=${LINKACE_DB}
- DB_USERNAME=${LINKACE_DB_USERNAME}
- DB_PASSWORD=${LINKACE_DB_PASSWORD}
- REDIS_HOST=redis
depends_on:
- mariadb
- redis
ports:
- "${LINKACE_EXTERNAL_PORT}:${LINKACE_INTERNAL_PORT}"
volumes:
- ${DOCKER_STORAGE_PATH}/linkace/backups:/app/storage/app/backups
restart: unless-stopped
profiles:
- base
networks: