mirror of
https://github.com/hacdias/webdav.git
synced 2026-09-22 03:20:41 +08:00
16 lines
295 B
YAML
16 lines
295 B
YAML
name: webdav
|
|
|
|
services:
|
|
app:
|
|
container_name: webdav
|
|
image: 'webdav:test'
|
|
ports:
|
|
- '6065:6065'
|
|
security_opt:
|
|
- label=type:container_runtime_t
|
|
restart: always
|
|
volumes:
|
|
- ./data:/data
|
|
- ./config.yml:/config.yml:ro
|
|
command: ['-c', '/config.yml']
|