Hi Henrik,
On Mon, Jul 17, 2017, at 07:55 AM, Henrik Rasmussen wrote:
I am new to all of Python, Django, Docker, Docker-compose and everything else used by docker-mailman. I have managed to get a webinterface of Mailman 3.1, I installed using Docker and Docker-Compose from github.com/maxking/docker-mailman, but my config is still bogues (probably just my Apache-config).
I'm quite confused about Mailman 3 documentation regarding those commands the site admin would do in Mailman 2 like list_members, config_list -o etc.)., and I have been trying to figure out what documentation regards the development of Mailman 3, what regards the final version 3.1 and what I am supposed to do regarding Docker.
- Should I enter the container using "docker exec -it mailman-web bash" and run "python" in order to get a python prompt, and from there run commands like those documented at mailman.readthedocs.io/en/latest/src/mailman/commands/docs/control.html ?.
Just to add to what Barry mentioned, the in docker command above, you
should
enter the mailman-core
container instead of the mailman-web
container if
you are looking for the command line options of Mailman Core.
so it should be something like:
$ docker exec -it mailman-core bash
-- thanks, Abhilash Raj