docker-ps3netsrv icon indicating copy to clipboard operation
docker-ps3netsrv copied to clipboard

[HELP] pkg files in PKG directory not showing up

Open jagiella opened this issue 8 months ago • 0 comments

I have read and followed all troubleshooting steps from the README.md?

// paste the secret help code in here

System configuration:
Please execute every command here and post the output. I will not answer tickets where these outputs are missing.

Output of docker version:

// paste the output of the docker version command here
Client: Docker Engine - Community
 Version:           24.0.6
 API version:       1.43
 Go version:        go1.20.7
 Git commit:        ed223bc
 Built:             Mon Sep  4 12:32:13 2023
 OS/Arch:           linux/arm64
 Context:           default

Server: Docker Engine - Community
 Engine:
  Version:          24.0.6
  API version:      1.43 (minimum version 1.12)
  Go version:       go1.20.7
  Git commit:       1a79695
  Built:            Mon Sep  4 12:32:13 2023
  OS/Arch:          linux/arm64
  Experimental:     false
 containerd:
  Version:          1.6.24
  GitCommit:        61f9fd88f79f081d64d6fa3bb1a0dc71ec870523
 runc:
  Version:          1.1.9
  GitCommit:        v1.1.9-0-gccaecfc
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0

Output of docker ps -a -f "ancestor=shawly/ps3netsrv":

// paste the output of the docker ps -a -f "ancestor=shawly/ps3netsrv" command here
CONTAINER ID   IMAGE              COMMAND   CREATED       STATUS       PORTS                                           NAMES
0d4d7c95df01   shawly/ps3netsrv   "/init"   2 hours ago   Up 2 hours   0.0.0.0:38008->38008/tcp, :::38008->38008/tcp   ps3netsrv

Output of docker logs CONTAINERNAME (replace CONTAINERNAME with your ps3netsrv container's name):

// paste the output of the docker logs CONTAINERNAME command here
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 00-adduser: executing... 
usermod: no changes

-------------------------------------
GID/UID
-------------------------------------

User uid:    1000
User gid:    1000
-------------------------------------

[cont-init.d] 00-adduser: exited 0.
[cont-init.d] done.
[services.d] starting services
2023-10-23 09:56:50.209093012  ps3netsrv build 20220330 (mod by aldostools)
[services.d] done.

Output of id (you should be logged in with the user that owns your games directory):

// paste the output of the id command here
uid=1000(myuser) gid=1000(myuser) groups=1000(myuser),5(tty),6(disk),20(dialout),27(sudo),29(audio),44(video),46(plugdev),60(games),100(users),102(input),110(netdev),999(systemd-journal)

Output of docker exec --user ps3netsrv CONTAINERNAME id (replace CONTAINERNAME with your ps3netsrv container's name):

// paste the output of the docker exec --user ps3netsrv CONTAINERNAME id command here
uid=1000(ps3netsrv) gid=1000(ps3netsrv) groups=1000(ps3netsrv),100(users)

Output of ls -l /path/to/your/games/folder:

// paste the output of the ls -l /path/to/your/games/folder command here

Output of docker exec CONTAINERNAME ls -l /games (replace CONTAINERNAME with your ps3netsrv container's name):

// paste the output of the docker exec CONTAINERNAME ls -l /games command here
total 40
drwxrwxr-x 2 ps3netsrv ps3netsrv 20480 Oct 23 11:35 PKG
drwxrwxr-x 2 ps3netsrv ps3netsrv 20480 Oct 22 20:42 PS3ISO

My docker run command or my docker-compose.yml:

// paste the FULL docker run command or your docker-compose.yml here
sudo docker run --name=ps3netsrv -p 38008:38008 -v PATH2ISOS:/games/PS3ISO:rw  -v PATH2PKGS:/games/PKG:rw  shawly/ps3netsrv

jagiella avatar Oct 23 '23 11:10 jagiella