Fix shinanigans with the /data volume in the doc

This commit is contained in:
Théophile Diot 2023-09-06 10:04:47 +02:00
parent 1b84c62024
commit d1dd1fbae7
No known key found for this signature in database
GPG Key ID: 248FEA4BAE400D06
2 changed files with 7 additions and 6 deletions

View File

@ -102,7 +102,7 @@ A volume is needed to store the SQLite database that will be used by the schedul
```yaml
...
services:
mybunker:
bw-scheduler:
image: bunkerity/bunkerweb-scheduler:1.5.1
volumes:
- bw-data:/data

View File

@ -1475,7 +1475,7 @@ Some integrations provide more convenient ways to apply configurations, such as
default_type 'text/plain';
content_by_lua_block {
ngx.say('world')
}
}
}
...
```
@ -1509,8 +1509,8 @@ Some integrations provide more convenient ways to apply configurations, such as
When starting the scheduler container, you will need to mount the folder on /data :
```yaml
mybunker:
image: bunkerity/bunkerweb:1.5.1
bw-scheduler:
image: bunkerity/bunkerweb-scheduler:1.5.1
volumes:
- ./bw-data:/data
...
@ -1545,7 +1545,8 @@ Some integrations provide more convenient ways to apply configurations, such as
default_type 'text/plain';
content_by_lua_block {
ngx.say('world')
}
}
}
...
```
@ -1578,7 +1579,7 @@ Some integrations provide more convenient ways to apply configurations, such as
When starting the scheduler container, you will need to mount the folder on /data :
```yaml
myautoconf:
bw-scheduler:
image: bunkerity/bunkerweb-scheduler:1.5.1
volumes:
- ./bw-data:/data