You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So the most frustrating thing I've run into is the constant
root@debian:/# docker-compose up -d
ERROR:
Can't find a suitable configuration file in this directory or any
parent. Are you in the right directory?
Supported filenames: docker-compose.yml, docker-compose.yaml, compose.yml, compose.yaml
as well as the error from VPN running before starting docker once more
Created this
navigate to bin dir cd /bin
create a file for the function nano d-compose.sh
input the following into the file
#!/bin/bash
#turn off VPN(if you have a different VPN like OpenVPN, enter the disconnect command here)
windscribe disconnect
#restart docker servers(make sure to change the filepath to reflect yours)
(cd /htpc/htpc-download-box && docker-compose down)
(cd /htpc/htpc-download-box && docker-compose up -d)
#turn VPN on(if you have a different VPN like OpenVPN, enter the connect command here)
windscribe connect
exit
Exit and save
try and run it d-compose.sh
The text was updated successfully, but these errors were encountered:
cbytestech
changed the title
Command Fix
Command Fix - "docker-compose" anywhere
Jun 22, 2021
So the most frustrating thing I've run into is the constant
as well as the error from VPN running before starting docker once more
Created this
cd /bin
nano d-compose.sh
d-compose.sh
The text was updated successfully, but these errors were encountered: