[NC] Add testing
This commit is contained in:
parent
9086875add
commit
0aea49e71a
1
nextcloud/testing/.env.example
Normal file
1
nextcloud/testing/.env.example
Normal file
@ -0,0 +1 @@
|
|||||||
|
CN=
|
1
nextcloud/testing/.gitignore
vendored
Normal file
1
nextcloud/testing/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
data/
|
43
nextcloud/testing/docker-compose.yml
Normal file
43
nextcloud/testing/docker-compose.yml
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
nextcloud_db:
|
||||||
|
image: mariadb:10.5.4
|
||||||
|
container_name: nextcloud_db2
|
||||||
|
env_file:
|
||||||
|
- ./secrets/db.secrets
|
||||||
|
volumes:
|
||||||
|
- ./data/db:/var/lib/mysql
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
nextcloud_app:
|
||||||
|
image: nextcloud:19.0.10
|
||||||
|
depends_on:
|
||||||
|
- nextcloud_db
|
||||||
|
container_name : nextcloud_app2
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
- default
|
||||||
|
expose:
|
||||||
|
- "80"
|
||||||
|
links:
|
||||||
|
- nextcloud_db
|
||||||
|
volumes:
|
||||||
|
- ./data/app/config.php:/var/www/html/config/config.php
|
||||||
|
hostname: ${CN}
|
||||||
|
restart: unless-stopped
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.docker.network=proxy"
|
||||||
|
- "traefik.http.middlewares.nc2-redirect-websecure.redirectscheme.scheme=https"
|
||||||
|
- "traefik.http.routers.nc2-http.middlewares=nc2-redirect-websecure"
|
||||||
|
- "traefik.http.routers.nc2-http.rule=Host(`${CN}`)"
|
||||||
|
- "traefik.http.routers.nc2-http.entrypoints=web"
|
||||||
|
- "traefik.http.routers.nc2-https.rule=Host(`${CN}`)"
|
||||||
|
- "traefik.http.routers.nc2-https.entrypoints=websecure"
|
||||||
|
- "traefik.http.routers.nc2-https.tls=true"
|
||||||
|
- "traefik.http.routers.nc2-https.tls.certresolver=myhttpchallenge"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external: true
|
4
nextcloud/testing/secrets/db.secrets.example
Normal file
4
nextcloud/testing/secrets/db.secrets.example
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
MYSQL_ROOT_PASSWORD=
|
||||||
|
MYSQL_DATABASE=
|
||||||
|
MYSQL_PASSWORD=
|
||||||
|
MYSQL_USER=
|
Loading…
Reference in New Issue
Block a user