mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-15 19:05:09 +01:00
Splitting Nextcloud flow into multiple flows
This commit is contained in:
parent
cc39363294
commit
0b93d3b37d
2 changed files with 14 additions and 2 deletions
|
@ -36,21 +36,30 @@ networks:
|
||||||
nextcloud-setup-network:
|
nextcloud-setup-network:
|
||||||
|
|
||||||
flow:
|
flow:
|
||||||
- name: Install Nextcloud and collaborate on document
|
- name: Install Nextcloud
|
||||||
container: gcb-playwright
|
container: gcb-playwright
|
||||||
commands:
|
commands:
|
||||||
- type: console
|
- type: console
|
||||||
command: python3 /tmp/nextcloud_install.py
|
command: python3 /tmp/nextcloud_install.py
|
||||||
note: Installing Nextcloud
|
note: Installing Nextcloud
|
||||||
read-notes-stdout: true
|
read-notes-stdout: true
|
||||||
|
- name: Create User
|
||||||
|
container: gcb-playwright
|
||||||
|
commands:
|
||||||
- type: console
|
- type: console
|
||||||
command: python3 /tmp/nextcloud_create_user.py
|
command: python3 /tmp/nextcloud_create_user.py
|
||||||
note: Create user
|
note: Create user
|
||||||
read-notes-stdout: true
|
read-notes-stdout: true
|
||||||
|
- name: Create doc and share
|
||||||
|
container: gcb-playwright
|
||||||
|
commands:
|
||||||
- type: console
|
- type: console
|
||||||
command: python3 /tmp/nextcloud_create_doc_and_share.py
|
command: python3 /tmp/nextcloud_create_doc_and_share.py
|
||||||
note: Create document and share
|
note: Create document and share
|
||||||
read-notes-stdout: true
|
read-notes-stdout: true
|
||||||
|
- name: Collaborate
|
||||||
|
container: gcb-playwright
|
||||||
|
commands:
|
||||||
- type: console
|
- type: console
|
||||||
command: python3 /tmp/nextcloud_docs_collaboration.py
|
command: python3 /tmp/nextcloud_docs_collaboration.py
|
||||||
note: dev
|
note: dev
|
||||||
|
|
|
@ -34,13 +34,16 @@ networks:
|
||||||
nextcloud-setup-network:
|
nextcloud-setup-network:
|
||||||
|
|
||||||
flow:
|
flow:
|
||||||
- name: Install Nextcloud and start a conversation
|
- name: Install Nextcloud
|
||||||
container: gcb-playwright
|
container: gcb-playwright
|
||||||
commands:
|
commands:
|
||||||
- type: console
|
- type: console
|
||||||
command: python3 /tmp/nextcloud_install.py
|
command: python3 /tmp/nextcloud_install.py
|
||||||
note: Installing Nextcloud
|
note: Installing Nextcloud
|
||||||
read-notes-stdout: true
|
read-notes-stdout: true
|
||||||
|
- name: Talk conversation
|
||||||
|
container: gcb-playwright
|
||||||
|
commands:
|
||||||
- type: console
|
- type: console
|
||||||
command: python3 /tmp/nextcloud_talk.py
|
command: python3 /tmp/nextcloud_talk.py
|
||||||
note: Starting conversation
|
note: Starting conversation
|
||||||
|
|
Loading…
Add table
Reference in a new issue