compose.override.yaml-dist 602 Bytes
# overriding compose configuration file
# dynamically links files and directories from host to container

services:
  web:
    volumes:
      # local csv files cache used for the running container
      - ./cache:/cache:rw
      # local site configuration file used for the running container
      - ./config.yml:/config.yml
      # local speasy configuration file used for the running container
      - ${HOME}/.config/speasy/config.ini:/root/.config/speasy/config.ini
      # local speasy cache dir file used for the running container
      - ${HOME}/.cache/speasy/Cache:/root/.cache/speasy/Cache:rw