0

I have installed Gogits as a docker container. It was working fine, but I had to restart my server and now my gogs container does not start. When i run command

docker start -a gogs

I get those errors repeated:

s6-supervise gogs: fatal: unable to mkfifodir event: Permission denied
s6-supervise openssh: fatal: unable to mkfifodir event: Permission denied
s6-supervise gogs: fatal: unable to mkfifodir event: Permission denied
s6-supervise gogs: fatal: unable to mkfifodir event: Permission denied
s6-supervise openssh: fatal: unable to mkfifodir event: Permission denied
s6-supervise openssh: fatal: unable to mkfifodir event: Permission denied

What can I do to fix this?

2 Answers2

1

Issue has been fixed with pull-request 1758. The latest gogs/gogs docker image works fine.

Rod
  • 52,748
  • 3
  • 38
  • 55
0

You need to look where are those directories in your containers and make sure permissions are correct.

Maybe this is a shared volume and your docker user can't write to this shared volume?

Aurélien Bottazini
  • 3,249
  • 17
  • 26