mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 16:23:25 +01:00
78 lines
1.6 KiB
YAML
78 lines
1.6 KiB
YAML
---
|
|
version: '3'
|
|
|
|
volumes:
|
|
nextcloud-data:
|
|
nextcloud-db:
|
|
npm-data:
|
|
npm-ssl:
|
|
npm-db:
|
|
|
|
networks:
|
|
frontend:
|
|
# add this if the network is already existing!
|
|
# external: true
|
|
backend:
|
|
|
|
services:
|
|
|
|
nextcloud-app:
|
|
image: nextcloud
|
|
restart: always
|
|
volumes:
|
|
- nextcloud-data:/var/www/html
|
|
environment:
|
|
- MYSQL_PASSWORD=replace-with-secure-password
|
|
- MYSQL_DATABASE=nextcloud
|
|
- MYSQL_USER=nextcloud
|
|
- MYSQL_HOST=nextcloud-db
|
|
networks:
|
|
- frontend
|
|
- backend
|
|
|
|
nextcloud-db:
|
|
image: mariadb
|
|
restart: always
|
|
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
|
volumes:
|
|
- nextcloud-db:/var/lib/mysql
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=replace-with-secure-password
|
|
- MYSQL_PASSWORD=replace-with-secure-password
|
|
- MYSQL_DATABASE=nextcloud
|
|
- MYSQL_USER=nextcloud
|
|
networks:
|
|
- backend
|
|
|
|
npm-app:
|
|
image: jc21/nginx-proxy-manager:latest
|
|
restart: always
|
|
ports:
|
|
- "80:80"
|
|
- "81:81"
|
|
- "443:443"
|
|
environment:
|
|
- DB_MYSQL_HOST=npm-db
|
|
- DB_MYSQL_PORT=3306
|
|
- DB_MYSQL_USER=npm
|
|
- DB_MYSQL_PASSWORD=replace-with-secure-password
|
|
- DB_MYSQL_NAME=npm
|
|
volumes:
|
|
- npm-data:/data
|
|
- npm-ssl:/etc/letsencrypt
|
|
networks:
|
|
- frontend
|
|
- backend
|
|
|
|
npm-db:
|
|
image: jc21/mariadb-aria:latest
|
|
restart: always
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=replace-with-secure-password
|
|
- MYSQL_DATABASE=npm
|
|
- MYSQL_USER=npm
|
|
- MYSQL_PASSWORD=replace-with-secure-password
|
|
volumes:
|
|
- npm-db:/var/lib/mysql
|
|
networks:
|
|
- backend |