1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 08:04:49 +01:00
pywb/sample-deploy/docker-compose-outback.yaml

40 lines
707 B
YAML
Raw Permalink Normal View History

version: '3'
services:
# outbackcdx image
outbackcdx:
image: nlagovau/outbackcdx
ports:
- 8084:8080
# use cdx-indexer to index and ingest into outbackcdx
ingest:
image: webrecorder/pywb
entrypoint: ["bash", "-c"]
command: /tmp/run.sh
depends_on:
- outbackcdx
volumes:
- ../config.yaml:/webarchive/config.yaml
- ./run.sh:/tmp/run.sh
- ../sample_archive/:/webarchive/sample_archive/
# main pywb image
pywb:
image: webrecorder/pywb
volumes:
- ../config.yaml:/webarchive/config.yaml
- ../sample_archive/:/webarchive/sample_archive/
ports:
- 8080:8080
depends_on:
- ingest