Skip to content

Commit

Permalink
Added OpenQ-Synpress to pull scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-Stevers committed Apr 14, 2023
1 parent 2cf3f01 commit e230bad
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ OpenQ-Espresso/
OpenQ-Email-Server/
OpenQ-Document-Manager/
OpenQ-Notification-Autotask/
OpenQ-Synpress/

# Data from The Graph Node's Postgres and IPFS
data/
Expand Down
1 change: 1 addition & 0 deletions boot-drm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ declare -a repos=(
"OpenQ-Token-Price-Cron-Job"
"Superfluid-Subgraph"
"OpenQ-User-Registration"
"OpenQ-Synpress"
)

for repo in "${repos[@]}"; do
Expand Down
38 changes: 38 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -323,3 +323,41 @@ services:
ports:
- "8888:8081"
restart: unless-stopped
synpress:
container_name: synpress
command: sleep infinity
environment:
DISPLAY: ":14"
LIBGL_ALWAYS_INDIRECT: 0
volumes_from:
- x11-bridge:rw
depends_on:
- x11-bridge
build:
dockerfile: Dockerfile
context: ./OpenQ-Synpress
ports:
- "8181:8181"
volumes:
- /app/node_modules
env_file:
- ./OpenQ-Synpress/.env

x11-bridge:
image: jare/x11-bridge

ports:
- "8080:8080"
volumes:
- "/tmp/.X11-unix:/tmp/.X11-unix:rw"

restart: always
depends_on:
- openq-frontend

environment:
MODE: tcp
XPRA_HTML: "yes"
DISPLAY: ":14"
XPRA_TCP_PORT: "8080"
XPRA_PASSWORD: MUST_BE_SOMETHING
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ declare -a repos=(
"OpenQ-Email-Server"
"OpenQ-Document-Manager"
"OpenQ-Notification-Autotask"
"OpenQ-Synpress"
)

for repo in "${repos[@]}"; do
Expand Down
1 change: 1 addition & 0 deletions pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ declare -a repos=(
"OpenQ-Event-Listener"
"OpenQ-Token-Price-Cron-Job"
"Superfluid-Subgraph"
"OpenQ-Synpress"
)

echo 'CAREFUL THIS SCRIPT STASHES ALL REPOS'
Expand Down

0 comments on commit e230bad

Please sign in to comment.