-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
31 lines (29 loc) · 780 Bytes
/
compose.yaml
File metadata and controls
31 lines (29 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
services:
redis:
image: ghcr.io/dragonflydb/dragonfly:v1.35.1
restart: "always"
ports:
- "6379:6379"
volumes:
- redis:/data
pas:
pull_policy: always
command: ["pas"]
environment:
PWB_CONSUMER_TOKEN: $CURATORBOT_PWB_CONSUMER_TOKEN
PWB_CONSUMER_SECRET: $CURATORBOT_PWB_CONSUMER_SECRET
PWB_ACCESS_TOKEN: $CURATORBOT_PWB_ACCESS_TOKEN
PWB_ACCESS_SECRET: $CURATORBOT_PWB_ACCESS_SECRET
PWB_USERNAME: $CURATORBOT_PWB_USERNAME
FLICKR_API_KEY: $FLICKR_API_KEY
TOOL_REDIS_URI: "redis://redis"
EMAIL: $EMAIL
image: tools-harbor.wmcloud.org/tool-curator/wikibots:latest
restart: "always"
# build: .
# volumes:
# - ./src:/app/src
depends_on:
- redis
volumes:
redis: