mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 05:01:10 -05:00
We agreed to move the 'opencloud_full' example to a new directory to avoid confusion with the supported compose examples in opencloud-compose. This commit keeps the bare-metal example in place as that is still mentioned in the documentation.
19 lines
508 B
YAML
19 lines
508 B
YAML
---
|
|
services:
|
|
opencloud:
|
|
volumes:
|
|
# external sites needs to have sites configured in the web.yaml
|
|
- ./config/opencloud/apps.yaml:/etc/opencloud/apps.yaml
|
|
depends_on:
|
|
externalsites-init:
|
|
condition: service_completed_successfully
|
|
|
|
externalsites-init:
|
|
image: opencloudeu/web-extensions:external-sites-1.0.0
|
|
user: root
|
|
volumes:
|
|
- opencloud-apps:/apps
|
|
entrypoint:
|
|
- /bin/sh
|
|
command: ["-c", "cp -R /usr/share/nginx/html/external-sites/ /apps"]
|