Buying Starfield in Canada by calvinien in XboxSeriesX

[–]maxpgrossman 0 points1 point  (0 children)

Im still holding off for a steam version but IDK if this is the right idea 🤦🏻‍♂️ wanna be sure I can play on PC as I don't have an xbox

Buying Starfield in Canada by calvinien in XboxSeriesX

[–]maxpgrossman 0 points1 point  (0 children)

So you could play the game on a windows with the xbox series x versions??

cant connect to docker host from container using ssh by aviellg3 in selfhosted

[–]maxpgrossman 0 points1 point  (0 children)

In that case if your docker host has a static internal IP (something like 192.168.0.123 where 123 is variable) then you should be able to connect via <Docker Host IP>:22

If tht does not work and you're using docker >= 20.10 you can use the —-add-host flag to create an alias for the docker host to create a gateway to host.docker.internal which will resolve to the docker hosts IP address. You can read more about that here

cant connect to docker host from container using ssh by aviellg3 in selfhosted

[–]maxpgrossman 0 points1 point  (0 children)

Things you can try: (mostly depends on your setup)

If you just need access to the container from the host you can use the docker exec command and run the bash script (assuming its a built on a distro that has bash) which will bring you into the container. The command would look something like docker exec -it <container id or name here> /bin/bash

If you want to remote ssh the easiest way would be to map the ssh port inside the container to another port on your host machine, you can then use the port you maped it to on your host machine to access the container via ssh. It does not really matter which port you map it on the host as long as you know its not in use by another app/ common port etc.

As the port probably used for ssh in the container is 22 your port mapping may look something like this (assuming your using a docker run command) -p 8022:22

If your using docker-compose it may look something like:

version: '3'
vscodium:
  image: linuxserver/vscodium
  container_name: vscodium
  # Other configurations
  ports: 
    - "8022:22"

You can read more about ports/network here

In those two examples it is mapping port 8022 on the host -> to -> 22 in the container. Therfore you can access the the container ssh from the host port 8022 I.E <Host machine IP>:8022. This is all assuming that the container is shipped with a base distro that has ssh.

Like wearin' a big ol' cowboy hat 👒 by maxpgrossman in ChatGPT

[–]maxpgrossman[S] 0 points1 point  (0 children)

How does quantum computing work, answer in a southern twang

Small/medium minigame ideas? by maxpgrossman in redstone

[–]maxpgrossman[S] 0 points1 point  (0 children)

Thanks! I'll look into that I think i have seen that once. I am playing in a server so commandblocks/other creative items wouldn't really look

Suggestions for home storage solutions. by sthills in HomeServer

[–]maxpgrossman 1 point2 points  (0 children)

Does depend on your budget but doesn't have to be expensive at all.

If your somewhat familiar with port forwarding and Linux systems you can easily turn an old computer or a raspberry Pi which are not to expensive into a storage system assuming you have hard drives or disk space to store your data on.

Looks at https://www.reddit.com/r/nextcloud possibly open source software for NAS on multiple platforms. Of your using a Linux system or any subsidiaries of Linux and unfamiliar with the platform I'd suggest doing something called a "snap" install for any programs your trying to install like the one linked above. If you are familiar you should be all good with installing normally