Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

A sine curve goes off to infinity, or at least the end of the blackboard. -- Prof. Steiner


devel / comp.lang.php / phpdoc and docker

SubjectAuthor
* phpdoc and dockerTommy
+* Re: phpdoc and dockerJ.O. Aho
|`* Re: phpdoc and dockerTommy
| `* Re: phpdoc and dockerJ.O. Aho
|  `- Re: phpdoc and dockerTommy
`- Re: phpdoc and dockerHe, who travels time to time

1
phpdoc and docker

<tajjp5$1fjk$1@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=625&group=comp.lang.php#625

  copy link   Newsgroups: comp.lang.php
Path: i2pn2.org!i2pn.org!aioe.org!y/zf3gUsVB1ibu6gO1+poA.user.46.165.242.91.POSTED!not-for-mail
From: ba@ve.net (Tommy)
Newsgroups: comp.lang.php
Subject: phpdoc and docker
Date: Tue, 12 Jul 2022 12:52:21 +0200
Organization: Aioe.org NNTP Server
Message-ID: <tajjp5$1fjk$1@gioia.aioe.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="48756"; posting-host="y/zf3gUsVB1ibu6gO1+poA.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.9.1
X-Notice: Filtered by postfilter v. 0.9.2
Content-Language: it-IT
 by: Tommy - Tue, 12 Jul 2022 10:52 UTC

$ docker run --rm -v ${PWD}:/data phpdoc/phpdoc:3
docker: Cannot connect to the Docker daemon at
unix:///$HOME/.docker/desktop/docker.sock. Is the docker daemon running?.
See 'docker run --help'.

Why?

Re: phpdoc and docker

<jj5gtmFc4j7U1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=626&group=comp.lang.php#626

  copy link   Newsgroups: comp.lang.php
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!3.eu.feeder.erje.net!feeder.erje.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: user@example.net (J.O. Aho)
Newsgroups: comp.lang.php
Subject: Re: phpdoc and docker
Date: Tue, 12 Jul 2022 17:05:26 +0200
Lines: 19
Message-ID: <jj5gtmFc4j7U1@mid.individual.net>
References: <tajjp5$1fjk$1@gioia.aioe.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net warJ2oJLyK5xIrOrieJxrwMc/DH6rvG6NShLcTHZqGrI4EofWO
Cancel-Lock: sha1:Laq7aT3bkovjrfVIarxskdDKxMk=
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.10.0
Content-Language: en-US-large
In-Reply-To: <tajjp5$1fjk$1@gioia.aioe.org>
 by: J.O. Aho - Tue, 12 Jul 2022 15:05 UTC

On 12/07/2022 12.52, Tommy wrote:
> $ docker run --rm -v ${PWD}:/data phpdoc/phpdoc:3
> docker: Cannot connect to the Docker daemon at
> unix:///$HOME/.docker/desktop/docker.sock. Is the docker daemon running?.
> See 'docker run --help'.
>
> Why?

Docker requires the docker service to be up and running before you can
use the command line to execute things. This for the docker service will
do things for you that you don't have access to do as an unprivileged
user, as long as you are in the docker group.

This has little to do with PHP, if you need more assistance you should
look at a Linux newsgroup to get help to start your docker service.

--

//Aho

Re: phpdoc and docker

<tak471$18e5$2@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=627&group=comp.lang.php#627

  copy link   Newsgroups: comp.lang.php
Path: i2pn2.org!i2pn.org!aioe.org!y/zf3gUsVB1ibu6gO1+poA.user.46.165.242.91.POSTED!not-for-mail
From: ba@ve.net (Tommy)
Newsgroups: comp.lang.php
Subject: Re: phpdoc and docker
Date: Tue, 12 Jul 2022 17:32:49 +0200
Organization: Aioe.org NNTP Server
Message-ID: <tak471$18e5$2@gioia.aioe.org>
References: <tajjp5$1fjk$1@gioia.aioe.org> <jj5gtmFc4j7U1@mid.individual.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="41413"; posting-host="y/zf3gUsVB1ibu6gO1+poA.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.9.1
Content-Language: it-IT
X-Notice: Filtered by postfilter v. 0.9.2
 by: Tommy - Tue, 12 Jul 2022 15:32 UTC

Il 12/07/22 17:05, J.O. Aho ha scritto:
> On 12/07/2022 12.52, Tommy wrote:
>> $ docker run --rm -v ${PWD}:/data phpdoc/phpdoc:3
>> docker: Cannot connect to the Docker daemon at
>> unix:///$HOME/.docker/desktop/docker.sock. Is the docker daemon running?.
>> See 'docker run --help'.
>>
>> Why?
>
> Docker requires the docker service to be up and running before you can
> use the command line to execute things. This for the docker service will
> do things for you that you don't have access to do as an unprivileged
> user, as long as you are in the docker group.
>
> This has little to do with PHP, if you need more assistance you should
> look at a Linux newsgroup to get help to start your docker service.
>

I restarted the system, but it still doesn't work

$ cat phpdoc.dist.xml
<?xml version="1.0" encoding="UTF-8" ?>
<phpdocumentor
configVersion="3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://www.phpdoc.org"
xsi:noNamespaceSchemaLocation="https://docs.phpdoc.org/latest/phpdoc.xsd"
>
<paths>
<output>build/api</output>
<cache>build/cache</cache>
</paths>
<version number="3.0.0">
<api>
<source dsn=".">
<path>src</path>
</source>
</api>
</version>
</phpdocumentor>

$ docker run --rm -v ${PWD}:/data phpdoc/phpdoc:3 | head -n6
Description:
Parses and transforms the given files to a specified location

Usage:
project:run [options]
run
write /dev/stdout: broken pipe

Re: phpdoc and docker

<jj5qlmFdmfsU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=628&group=comp.lang.php#628

  copy link   Newsgroups: comp.lang.php
Path: i2pn2.org!i2pn.org!aioe.org!usenet.goja.nl.eu.org!3.eu.feeder.erje.net!feeder.erje.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: user@example.net (J.O. Aho)
Newsgroups: comp.lang.php
Subject: Re: phpdoc and docker
Date: Tue, 12 Jul 2022 19:51:49 +0200
Lines: 32
Message-ID: <jj5qlmFdmfsU1@mid.individual.net>
References: <tajjp5$1fjk$1@gioia.aioe.org> <jj5gtmFc4j7U1@mid.individual.net>
<tak471$18e5$2@gioia.aioe.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net e0CifCobINj4mmaIorIEaA8GWTdXOYvqjqhDtlrTzZGTQfEFVb
Cancel-Lock: sha1:oJxXx4BMDUlEOfrG5vo4wPhSY6U=
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.10.0
Content-Language: en-US-large
In-Reply-To: <tak471$18e5$2@gioia.aioe.org>
 by: J.O. Aho - Tue, 12 Jul 2022 17:51 UTC

On 12/07/2022 17.32, Tommy wrote:
> Il 12/07/22 17:05, J.O. Aho ha scritto:
>> On 12/07/2022 12.52, Tommy wrote:
>>> $ docker run --rm -v ${PWD}:/data phpdoc/phpdoc:3
>>> docker: Cannot connect to the Docker daemon at
>>> unix:///$HOME/.docker/desktop/docker.sock. Is the docker daemon
>>> running?.
>>> See 'docker run --help'.
>>>
>>> Why?
>>
>> Docker requires the docker service to be up and running before you can
>> use the command line to execute things. This for the docker service
>> will do things for you that you don't have access to do as an
>> unprivileged user, as long as you are in the docker group.
>>
>> This has little to do with PHP, if you need more assistance you should
>> look at a Linux newsgroup to get help to start your docker service.
>>
>
> I restarted the system, but it still doesn't work

For the service hasn't been enabled, see this documentation:
https://developer.fedoraproject.org/tools/docker/docker-installation.html

sure you may use another distro than Fedora, but most distros uses
systemd, so it's the same if you look at "Start the Docker daemon at boot"

--

//Aho

Re: phpdoc and docker

<takkbb$1b4g$1@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=629&group=comp.lang.php#629

  copy link   Newsgroups: comp.lang.php
Path: i2pn2.org!i2pn.org!aioe.org!y/zf3gUsVB1ibu6gO1+poA.user.46.165.242.91.POSTED!not-for-mail
From: ba@ve.net (Tommy)
Newsgroups: comp.lang.php
Subject: Re: phpdoc and docker
Date: Tue, 12 Jul 2022 22:08:10 +0200
Organization: Aioe.org NNTP Server
Message-ID: <takkbb$1b4g$1@gioia.aioe.org>
References: <tajjp5$1fjk$1@gioia.aioe.org> <jj5gtmFc4j7U1@mid.individual.net>
<tak471$18e5$2@gioia.aioe.org> <jj5qlmFdmfsU1@mid.individual.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: gioia.aioe.org; logging-data="44176"; posting-host="y/zf3gUsVB1ibu6gO1+poA.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
Thunderbird/91.9.1
X-Notice: Filtered by postfilter v. 0.9.2
Content-Language: it-IT
 by: Tommy - Tue, 12 Jul 2022 20:08 UTC

Il 12/07/22 19:51, J.O. Aho ha scritto:
>
> On 12/07/2022 17.32, Tommy wrote:
>> Il 12/07/22 17:05, J.O. Aho ha scritto:
>>> On 12/07/2022 12.52, Tommy wrote:
>>>> $ docker run --rm -v ${PWD}:/data phpdoc/phpdoc:3
>>>> docker: Cannot connect to the Docker daemon at
>>>> unix:///$HOME/.docker/desktop/docker.sock. Is the docker daemon
>>>> running?.
>>>> See 'docker run --help'.
>>>>
>>>> Why?
>>>
>>> Docker requires the docker service to be up and running before you
>>> can use the command line to execute things. This for the docker
>>> service will do things for you that you don't have access to do as an
>>> unprivileged user, as long as you are in the docker group.
>>>
>>> This has little to do with PHP, if you need more assistance you
>>> should look at a Linux newsgroup to get help to start your docker
>>> service.
>>>
>>
>> I restarted the system, but it still doesn't work
>
> For the service hasn't been enabled, see this documentation:
> https://developer.fedoraproject.org/tools/docker/docker-installation.html
>
> sure you may use another distro than Fedora, but most distros uses
> systemd, so it's the same if you look at "Start the Docker daemon at boot"
>

Ma adesso docker funziona.
È phpdoc a dare problemi.

Sorry, I'm Italian and I struggle to speak English.
If you can translate with this
https://translate.google.it/?sl=it&tl=en&op=translate

Re: phpdoc and docker

<1eca7132-99ca-42cc-98b6-eab81dabef6en@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=679&group=comp.lang.php#679

  copy link   Newsgroups: comp.lang.php
X-Received: by 2002:a05:622a:614:b0:35d:1ad7:4ebb with SMTP id z20-20020a05622a061400b0035d1ad74ebbmr884971qta.176.1663856047048;
Thu, 22 Sep 2022 07:14:07 -0700 (PDT)
X-Received: by 2002:a25:d91:0:b0:6b4:2f1c:4b26 with SMTP id
139-20020a250d91000000b006b42f1c4b26mr4133389ybn.211.1663856046757; Thu, 22
Sep 2022 07:14:06 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.php
Date: Thu, 22 Sep 2022 07:14:06 -0700 (PDT)
In-Reply-To: <tajjp5$1fjk$1@gioia.aioe.org>
Injection-Info: google-groups.googlegroups.com; posting-host=82.131.36.130; posting-account=gin_zAoAAAAxFoHHJeGbYqdKpQ_tFzq7
NNTP-Posting-Host: 82.131.36.130
References: <tajjp5$1fjk$1@gioia.aioe.org>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <1eca7132-99ca-42cc-98b6-eab81dabef6en@googlegroups.com>
Subject: Re: phpdoc and docker
From: he1983912@aol.com (He, who travels time to time)
Injection-Date: Thu, 22 Sep 2022 14:14:07 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 1503
 by: He, who travels time - Thu, 22 Sep 2022 14:14 UTC

Hey... Want to talk? Call me.... My telephone number >>>>

(+372) 56330687

Tommy kirjutas Teisipäev, 12. juuli 2022 kl 13:52:31 UTC+3:
> $ docker run --rm -v ${PWD}:/data phpdoc/phpdoc:3
> docker: Cannot connect to the Docker daemon at
> unix:///$HOME/.docker/desktop/docker.sock. Is the docker daemon running?.
> See 'docker run --help'.
>
> Why?

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor