forked from wodsuz/EasyApplyJobsBot
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (26 loc) · 796 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (26 loc) · 796 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
services:
# vnc-linkedin-bot:
# container_name: vnc-linkedin-easy-apply-bot
# build:
# context: .
# dockerfile: Dockerfile-vnc
# volumes:
# - chrome_data_vnc:/home/user/chrome_data # This will be the persistent volume for Chrome user data
# environment:
# - PYTHONUNBUFFERED=1
# # user: "user" # To ensure we run as the unprivileged user you created in your Dockerfile
# ports:
# - "5901:5901" # VNC port
linkedin-bot:
container_name: linkedin-easy-apply-bot
build:
context: .
dockerfile: Dockerfile-headless
volumes:
- chrome_data_headless:/home/user/chrome_data
environment:
- PYTHONUNBUFFERED=1
command: python3 allConfigsRunner.py .
volumes:
chrome_data_headless:
chrome_data_vnc: