services: wayback_machine_downloader: build: context: . tty: true image: wayback_machine_downloader:latest container_name: wayback_machine_downloader environment: - DEVELOPMENT=${DEVELOPMENT:-production} - OPTIONS=${OPTIONS:-""} - TARGET_URL=${TARGET_URL} volumes: - .:/build:rw - ./websites:/build/websites:rw command: --directory /build/websites ${OPTIONS} ${TARGET_URL}