All checks were successful
/ build (map[dockerfile:./services/web/Dockerfile name:web]) (push) Successful in 2m7s
/ build (map[dockerfile:./services/app/Dockerfile name:app]) (push) Successful in 38s
/ build (map[dockerfile:./services/hasura/Dockerfile name:hasura]) (push) Successful in 46s
/ build (map[dockerfile:./services/files/Dockerfile name:files]) (push) Successful in 1m50s
/ build (map[dockerfile:./services/tasks/Dockerfile name:tasks]) (push) Successful in 2m3s
/ build (map[dockerfile:./services/api/Dockerfile name:api]) (push) Successful in 1m50s
/ build (map[dockerfile:./services/watchers/Dockerfile name:watchers]) (push) Successful in 2m0s
/ deploy (push) Successful in 9s
15 lines
428 B
Bash
Executable file
15 lines
428 B
Bash
Executable file
#!/usr/bin/env bash
|
||
set -e
|
||
|
||
# 1) your “before_script”
|
||
|
||
|
||
# 2) launch Terminator in its own D-Bus session (so it fully registers & unregisters windows),
|
||
# background it, and redirect all of its output away from your shell:
|
||
dbus-run-session -- terminator \
|
||
--config ./terminator-config \
|
||
--layout dev \
|
||
> /dev/null 2>&1 &
|
||
|
||
# 3) remove it from your shell’s job table so it won’t ever echo anything later
|
||
disown
|