Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fixed compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Piecha committed Jun 14, 2021
1 parent 3b1f9f5 commit 3864649
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
27 changes: 13 additions & 14 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
version: "3.8"
version: "3"

vaccipy:
build: .
container_name: vaccipy
restart: always
environment:
- VNC_PASSWORD=<password>
- VNC_PORT=5901
- WEB_PORT=6901
ports:
- 5901:5901
- 6901:6901
volumes:
- ./vaccipy/kontaktdaten.json:/app/kontaktdaten.json
services:
vaccipy:
build: .
container_name: vaccipy
restart: always
environment:
- VNC_PASSWORD=<password>
- VNC_PORT=5901
- WEB_PORT=6901
ports:
- 5901:5901
- 6901:6901
2 changes: 1 addition & 1 deletion tools/its.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def get_chromedriver(self, headless):

# Zur Behebung von "DevToolsActivePort file doesn't exist"
# chrome_options.add_argument("-no-sandbox");
chrome_options.add_argument("-disable-dev-shm-usage");
chrome_options.add_argument("-disable-dev-shm-usage")

# Chrome head is only required for the backup booking process.
# User-Agent is required for headless, because otherwise the server lets us hang.
Expand Down

0 comments on commit 3864649

Please sign in to comment.