forked from DrakeHooks/CasinoClaim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (34 loc) · 1.01 KB
/
Copy pathdocker-compose.yml
File metadata and controls
44 lines (34 loc) · 1.01 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
services:
casino-bot:
container_name: casino-bot
image: drakehooks/casinoclaim:testing
ports:
- "5900:5900"
environment:
- CHROME_INSTANCE_DIR=/data/chrome
- CHROME_PROFILE_DIR=Default
- PYTHONPATH=/app:/app/apis:/app/app
- FC_USER_DATA_DIR=/data/fortunecoins
volumes:
- chrome-profile:/data/chrome
- chrome-profile:/data/fortunecoins
- ./CAPTCHA-Solver-auto-hCAPTCHA-reCAPTCHA-freely-Chrome-Web-Store.crx:/temp/CAPTCHA-Solver.crx
env_file:
- .env
shm_size: "2g"
restart: unless-stopped
entrypoint: ["/bin/bash","-lc","bash /app/entrypoint.sh"]
labels:
- com.centurylinklabs.watchtower.enable=true
watchtower:
container_name: watchtower
image: containrrr/watchtower:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_LABEL_ENABLE=true
- WATCHTOWER_POLL_INTERVAL=3600
restart: unless-stopped
volumes:
chrome-profile: