webscraper/app/docker-compose.yaml
paprykdev 388964d497
Some checks are pending
Docker Image CI / build (push) Waiting to run
feat: scraper for monet arts
Signed-off-by: paprykdev <58005447+paprykdev@users.noreply.github.com>
2024-12-18 01:41:12 +01:00

43 lines
768 B
YAML

# services:
# webscraper:
# build:
# context: .
# dockerfile: ./docker/scripts/Dockerfile
# container_name: webscraper
# volumes:
# - .:/usr/src/app
# command:
# - tail
# - -f
# - /dev/null
# selenium-hub:
# image: "selenium/hub:3.141.59"
# container_name: selenium-hub
# ports:
# - "4444:4444"
# # redis:
# # image: "redis:alpine"
# # volumes:
# # - redis_data:/data
# # ports:
# # - "6379:6379"
#
# volumes:
# # redis_data:
# app:
services:
scraper:
build:
context: .
dockerfile: ./docker/scripts/Dockerfile
container_name: scraper
volumes:
- .:/usr/src/app
command:
- tail
- -f
- /dev/null
volumes:
app: