RusticPotato

Members
  • Posts

    7
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

RusticPotato's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Not sure if this is your issue but I had to do some work with my internal dns to make sure it didn't try and use the public ip, and used the private ip, as I don't have the port 8500 exposed publicly. In my pihole dns I pointed my dns domain names point to the local ip.
  2. Yea only need to use the client not server. I added openssh to aur_packages (eg aur_packages="openssh") in the example-startup-script.sh and the container wont start now: 2021-08-02 13:13:19.579191 [info] BIND_CLOUD_NAME not defined,(via -e BIND_CLOUD_NAME) 2021-08-02 13:13:19.613992 [info] ENABLE_STARTUP_SCRIPTS defined as 'yes' cp: cannot stat '/home/nobody/scripts/*.sh': No such file or directory * I should have put it in the AOR variable, pacman_packages="openssh". Though It still gives the same error ^.
  3. I ssh into my development machine(s) where all of my packages are already installed, then the projects I'm working on execute/build from that ssh console. I also have a bitvise ssh server running on some windows machines in case I need to run some powershell scripts. In general it helps if you are debugging, easily hopping to machines to reboot or control is invaluable when developing. Look at the extension [Remote - SSH - Visual Studio Marketplace] https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh .
  4. Hey @binhex, another question. I have been using this for a few days now, would you happen to know how I would enable ssh? Tried seeing if the sshd service was present to enable but couldn't get past elevating to the su as it asks for a password.
  5. Welcome. I rebuilt my container and it's working perfectly. Thanks!
  6. Hi @binhex, having an issue with the CERT_PATH and CERT_KEY_PATH variables. Not sure what I'm doing wrong, appreciate all your work. I placed the files in /config/code-server/certs directory as mentioned in the faq Q2/A2, then updated the variables. CERT_PATH is set to /config/code-server/certs/cert.crt CERT_KEY_PATH is set to /config/code-server/certs/privkey.key Error in the logs - 2021-07-29 17:10:20,837 DEBG 'start-script' stdout output: [2021-07-29T21:10:20.837Z] error ENOENT: no such file or directory, open '/'/config/code-server/certs/cert.crt'' Note - I have SELF_SIGNED_CERT set to yes, wasn't sure if it should be set to no. * I was able to get it to work removing the single quotes in /usr/local/bin/start.sh, and running the start.sh again. cert="--cert ${CERT_PATH}" cert_key="--cert-key ${CERT_KEY_PATH}"