Initial commit. v1 of the script
This commit is contained in:
commit
4795524b27
7 changed files with 251 additions and 0 deletions
25
docker-compose.yml
Normal file
25
docker-compose.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
version: "3.9"
|
||||
|
||||
services:
|
||||
webscreenshot:
|
||||
build: .
|
||||
container_name: webscreenshot
|
||||
restart: always
|
||||
environment:
|
||||
- SCALE=1
|
||||
- INTERVAL_MINUTES=30
|
||||
- URLS_FILE=/app/urls.csv
|
||||
- OUTPUT_DIR=/output
|
||||
volumes:
|
||||
- ./output:/output
|
||||
- ./app/urls.csv:/app/urls.csv
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
|
||||
apache:
|
||||
image: httpd:2.4
|
||||
container_name: apache
|
||||
restart: always
|
||||
ports:
|
||||
- "2090:80"
|
||||
volumes:
|
||||
- ./output:/usr/local/apache2/htdocs:ro
|
||||
Loading…
Add table
Add a link
Reference in a new issue