xiphl 7d240c600a
feat(ingestion) Allow for ingestion to read files remotely (#7552)
Co-authored-by: xiphl <xiphlerl9@gmail.com>
Allows the CsvEnricher, BusinessGlossary, File, and LineageFile sources to read from URLs.
2023-03-29 18:10:46 -07:00

11 lines
302 B
YAML

# This spins up a simple web server that hosts the files of ./content in http://127.0.0.1/<file>
version: '3.4'
services:
apache:
image: httpd:latest
container_name: file-server
ports:
- '80:80'
volumes:
- ./content:/usr/local/apache2/htdocs
hostname: somehost.example.com