mirror of
https://github.com/mthenw/frontail.git
synced 2026-04-26 02:05:57 +03:00
[GH-ISSUE #210] docker in portainer on OMV #139
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/frontail#139
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @g13092 on GitHub (May 12, 2020).
Original GitHub issue: https://github.com/mthenw/frontail/issues/210
I can't get this to stay running as a docker. Starts and dies within a few seconds. I'm creating the container using Portainer interface. I'm not sure I'm decoding the Docker run command correctly to get the continter to work:
docker run -d -P -v /var/log:/log mthenw/frontail /log/syslog
I understand the -P causes the ports to 'pass through' without explicitly publishing them. I understand to bind the host volume /var/log to the container volume /log. I understand the image name. I don't understand the purpose of the trailing /log/syslog. I THINK it means to select syslog in the logging driver pull down. I've tried several combinations, none successful.
In syslog, I see dockerd blah blah (Can't copy paste) "Handler for GET /containers/asdfasdfasdfasdfasdfsfsadf/logs returned error: configured logging driver does not support reading"
OMV is debian based. Any idea why I'm crashing?
@g13092 commented on GitHub (May 14, 2020):
:D user error, imagine that. Tool works good when I fire up from command line. Now I understand the /log/syslog and where it goes (in Command in Portainer, essentially an argument of the entry point.)