Skip to content

Instantly share code, notes, and snippets.

@duanebester
Created October 28, 2021 14:57
Show Gist options
  • Save duanebester/f8441b5aef9ab40a57a7cdde7056e5ae to your computer and use it in GitHub Desktop.
Save duanebester/f8441b5aef9ab40a57a7cdde7056e5ae to your computer and use it in GitHub Desktop.
Web Scraping w/ Clojure Docker Compose
version: '3'
services:
redis:
image: 'bitnami/redis:latest'
container_name: redis
environment:
- ALLOW_EMPTY_PASSWORD=yes
ports:
- 6379:6379
mongodb:
image: mongo
container_name: mongodb
environment:
- PUID=1000
- PGID=1000
ports:
- 27017:27017
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment