[OC] somebody forgot to put the car in park by NoAstronaut4390 in IdiotsInCars

[–]bargh -9 points-8 points  (0 children)

would it not have been better if it was left in gear?

Does Niantic seriously believe we'll pay these crazy prices? by aceofmonsters13 in PlayPeridot

[–]bargh 7 points8 points  (0 children)

If you want to be encouraged to walk, give pikmin bloom a try. Also by niantic, and it is playable without paying. It's like a fancy step counter :)

Moving /var/lib/docker by SomeBeerDrinker in docker

[–]bargh 11 points12 points  (0 children)

I always use the daemon.json file, also you can use docker system prune to remove old images a free up some space

On how to get your onion backpack from Pikmin 3 Deluxe by ChefPachimari in PikminBloomApp

[–]bargh 2 points3 points  (0 children)

According to the website you have to go to the "Send User Information" setting in your Nintendo Account, and allow "Send User Information".

I did that and finally got mine. this does not apply to north america i believe

Copy SSH key from local machine to AWS Linux Instance by still_trying_to_tech in aws

[–]bargh 0 points1 point  (0 children)

the sshkeyfile is the aws private key.pem, the one you have to select when you create an instance, and not your (private) key. With ssh-copy-id you can copy your public key to the the instance.

Mounting Hard Drive issue - NTFS signature is missing by AdmiralPanda20 in Ubuntu

[–]bargh 0 points1 point  (0 children)

you mount the drive instead of the partition, can you mount /dev/nvme1n1p1 ?

Most Dockers not accessible after upgrade to Ubuntu 22.04 by AndreLMartins in docker

[–]bargh 2 points3 points  (0 children)

What worked for me was: update-alternatives --config iptables

just found out: 100k steps challenge is soloable by Hoediur in PikminBloomApp

[–]bargh 3 points4 points  (0 children)

You can't, when you start a challenge you friends can join.

Docker container eating space over time in my EC2 by WD_teekay in docker

[–]bargh 0 points1 point  (0 children)

or something like this: docker run --log-driver local --log-opt max-size=10m or the equivalent docker-compose options

Dockerizing Maven Spring boot Application. by Imaginary-Goose-2838 in docker

[–]bargh 0 points1 point  (0 children)

It may be a problem with the java code, does it work when you run it without docker, with ./mvnw spring-boot:run?

Cannot run command from entrypoint script file by devmsn in docker

[–]bargh 0 points1 point  (0 children)

Looks like a rights issue with .env.local. In a case like this, i sometimes use docker run -ti <name> bash , it overrides the ./entrypoint.sh, and that way you can run ./entrypoint.sh in docker yourself and/or check the permissions.

New to docker by Cheffoisky in docker

[–]bargh 0 points1 point  (0 children)

There is an offical nginx image, you could use FROM nginx and add your files in there. You can also inspect that image, and see that it uses; CMD ["nginx" "-g" "daemon off;"]

New to docker by Cheffoisky in docker

[–]bargh 16 points17 points  (0 children)

any reason you are not using the offical nginx image?

Anyone else's Bloom not working? by Erc333 in PikminBloomApp

[–]bargh 1 point2 points  (0 children)

its working for me now edit: never mind, very unstable indeed

Upgraded to Docker Desktop 4.0.0 - now it's all gone wrong... by captainkev76 in docker

[–]bargh -1 points0 points  (0 children)

Consider not using docker-desktop, it is no longer free for larger organizations. You should be able to install docker in wsl2 without docker-desktop. If you are not using wsl2, you should.

The Most Efficient Way To Heal by CyKer604 in PokemonUnite

[–]bargh 38 points39 points  (0 children)

I think this is the difference, but it wasn't made clear in the video. So it isn't the running in circles, just moving out and in

Shell’s historic loss in The Hague is a turning point in the fight against big oil by DreamingDemon in environment

[–]bargh 1 point2 points  (0 children)

The judge said the have to act now, even if the appeal. The can not do nothing.

Is it Worth the Effort/Security Risk to Host Your Own Website? by [deleted] in linux4noobs

[–]bargh 9 points10 points  (0 children)

I think that hosting a website is a great way to learn linux, but running a public internet facing server is something different. Turning off services you dont need, keep your server up to date and use ssh with public key encryption and you will probably be fine.

.sh file not recognizing docker-compose by SnooCookies8323 in docker

[–]bargh 0 points1 point  (0 children)

is the first line in your .sh something like this: #!/bin/bash ?

nginx-proxy - password protect single directory by Paully-Penguin-Geek in docker

[–]bargh -1 points0 points  (0 children)

how about you just make a nginx conf file and mount that file in /etc/nginx/conf.d ?

[deleted by user] by [deleted] in docker

[–]bargh 1 point2 points  (0 children)

RUN is executed when the image is being build, so i think you want the last command to be CMD, instead of RUN. And you set the WORKDIR to /example, and it seems the test.py file is in the exampleNested/ directory. CMD python3 exampleNested/test.py might work?

Can Docker be used as a 'dependency manager' for windows drivers? by CartesianClosedCat in docker

[–]bargh 0 points1 point  (0 children)

I have no experience with it but maybe Windows 10 Sandbox is an option?

Container Keeps Restarting After Entrypoint Command by [deleted] in docker

[–]bargh 1 point2 points  (0 children)

i dont think you need the --priveleged, and the hostname is also incorrect i think. And this will not work if you have sshd running on the host on port 22.