I'm trying to get the Docker image to work but http://127.0.0.1:5666/ doesn't work, I'm guessing due to You need to execute this container in privileged mode at least once!. I'm passing the --privileged flag though.
What am I doing wrong?
C:\>docker run --privileged --name=Phlex --net=host digitalhigh/phlex
[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] 10-adduser: executing...
usermod: no changes
-------------------------------------
_ _ _
| |___| (_) ___
| / __| | |/ _ \
| \__ \ | | (_) |
|_|___/ |_|\___/
|_|
Brought to you by linuxserver.io
We gratefully accept donations at:
https://www.linuxserver.io/donations/
-------------------------------------
GID/UID
-------------------------------------
User uid: 911
User gid: 911
-------------------------------------
[cont-init.d] 10-adduser: exited 0.
[cont-init.d] 20-config: executing...
[cont-init.d] 20-config: exited 0.
[cont-init.d] 30-keygen: executing...
generating self-signed keys in /config/keys, you can replace these with your own keys if required
Generating a 2048 bit RSA private key
...........................................+++
.........................................................................................................+++
writing new private key to '/config/keys/cert.key'
-----
Subject Attribute /C has no known NID, skipped
[cont-init.d] 30-keygen: exited 0.
[cont-init.d] 40-install: executing...
ip: RTNETLINK answers: File exists
You need to execute this container in privileged mode at least once!
No repo found, pulling.
Cloning into '/config/www/Phlex'...
Updating Phlex.
Already up-to-date.
[cont-init.d] 40-install: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
I'm trying to get the Docker image to work but
http://127.0.0.1:5666/
doesn't work, I'm guessing due toYou need to execute this container in privileged mode at least once!
. I'm passing the--privileged
flag though.What am I doing wrong?