mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-09 10:12:20 +00:00

Co-authored-by: xiphl <xiphlerl9@gmail.com> Allows the CsvEnricher, BusinessGlossary, File, and LineageFile sources to read from URLs.
11 lines
302 B
YAML
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 |