File: docker-compose.yml

Recommend this page to a friend!
  Classes of Dom Hastings   JS Webdav Client   docker-compose.yml   Download  
File: docker-compose.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: JS Webdav Client
Access files of a Webdav server
Author: By
Last change: Refine Nginx example with docker-compose file
Adding functional test.
Replace webpack with esbuild.
Replace Babel with TypeScript.
Replace Karma with Jest.
Replace ESLint and Stylelint with Prettier.
Date: 5 months ago
Size: 715 bytes
 

Contents

Class file image Download
version: '3' services: webdav: image: webdav-js build: docker/webdav ports: - 8080:80 volumes: # main functionality - ./:/var/www/webdav-js # configs - ./examples/apache-directory-list-local/webdav.conf:/var/www/conf/webdav.conf:ro # demo content - ./dist/webdav.js:/var/www/html/source.js:ro - ./dist/webdav.css:/var/www/html/style.css:ro test: image: webdav-js-test build: docker/test volumes: - ./:/src depends_on: - webdav links: - webdav # https://stackoverflow.com/a/53975412/3145856 # https://github.com/docker/compose/issues/5574 security_opt: - seccomp:./docker/test/chrome.json