mirror of
https://github.com/webrecorder/browsertrix-crawler.git
synced 2025-10-19 06:23:16 +00:00

* docker-compose: just use ':latest' tag for local builds, allow users working with local docker-compose.yml to just build latest image - ci: add 'latest' tag to release ci build to automatically update latest as well - README: remove '[VERSION]', just refer to latest version of image in all examples - README: mention using specific released tag version for production
17 lines
265 B
YAML
17 lines
265 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
crawler:
|
|
image: webrecorder/browsertrix-crawler:latest
|
|
build:
|
|
context: ./
|
|
|
|
volumes:
|
|
- ./crawls:/crawls
|
|
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- SYS_ADMIN
|
|
|
|
shm_size: 1gb
|
|
|