Skip to content

Instantly share code, notes, and snippets.

@nobiki
Created February 1, 2018 02:12
Show Gist options
  • Save nobiki/21213515c1e7a9f1493a1b8c58d7e457 to your computer and use it in GitHub Desktop.
Save nobiki/21213515c1e7a9f1493a1b8c58d7e457 to your computer and use it in GitHub Desktop.
# Compose:
# docker-compose -f trello.yml run --rm trello [board|list|card]
# API Key:
# https://trello.com/1/appKey/generate
# Member Token:
# [RO] https://trello.com/1/connect?key=YOUR_API_KEY&name=trello-cli&response_type=token
# [RW] https://trello.com/1/authorize?key=YOUR_API_KEY&name=trello-cli&expiration=never&response_type=token&scope=read,write
version: "2"
services:
trello:
container_name: trello
hostname: trello
image: jamesmstone/trello
environment:
- "TZ=Asia/Tokyo"
- "TRELLO_DEVELOPER_PUBLIC_KEY=YOUR_API_KEY"
- "TRELLO_MEMBER_TOKEN=MEMBER_TOKEN"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment