docker-compose environment for the entire v.st system
https://v.st/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
49 lines
1.3 KiB
2 years ago
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
nextcloud-db:
|
||
|
image: postgres:13.4-alpine
|
||
|
container_name: nextcloud-db
|
||
|
restart: always
|
||
|
environment:
|
||
|
- POSTGRES_USER=nextcloud
|
||
|
- POSTGRES_PASSWORD=nextcloud
|
||
|
- POSTGRES_DB=nextcloud
|
||
|
volumes:
|
||
|
- ./data/nextcloud/database:/var/lib/postgresql/data
|
||
|
|
||
|
nextcloud:
|
||
|
image: nextcloud:25.0.1-apache
|
||
|
container_name: nextcloud
|
||
|
restart: always
|
||
|
env_file:
|
||
|
- env.production
|
||
|
environment:
|
||
|
POSTGRES_HOST: nextcloud-db
|
||
|
POSTGRES_DB: nextcloud
|
||
|
POSTGRES_USER: nextcloud
|
||
|
POSTGRES_PASSWORD: nextcloud
|
||
|
OVERWRITEPROTOCOL: https
|
||
|
NEXTCLOUD_ADMIN_USER: admin
|
||
|
NEXTCLOUD_ADMIN_PASSWORD: ${NEXTCLOUD_ADMIN_PASSWORD}
|
||
|
NEXTCLOUD_CLIENT_SECRET: ${NEXTCLOUD_CLIENT_SECRET}
|
||
|
NEXTCLOUD_TRUSTED_DOMAINS: ${NEXTCLOUD_HOSTNAME}.${DOMAIN_NAME}
|
||
|
volumes:
|
||
|
- ./data/nextcloud/nextcloud:/var/www/html
|
||
|
- ./nextcloud/setup.sh:/setup.sh:ro
|
||
|
depends_on:
|
||
|
- nextcloud-db
|
||
|
entrypoint: ["/setup.sh"]
|
||
|
|
||
|
# add the nginx configuration into the nginx volume
|
||
|
nginx:
|
||
|
volumes:
|
||
|
- ./nextcloud/nginx.conf:/etc/nginx/templates/nextcloud.conf.template:ro
|
||
|
|
||
|
# add the grafana client secrets to the keycloak-setup volume
|
||
|
keycloak-setup:
|
||
|
env_file:
|
||
|
- data/nextcloud/secrets
|
||
|
volumes:
|
||
|
- ./nextcloud/keycloak.sh:/keycloak-setup/nextcloud.sh:ro
|