-
Notifications
You must be signed in to change notification settings - Fork 52
Description
Hello,
first: Great work, jerob!!! 👍
I've the following problem:
I want to make sure that even after deleting the container it is still possible to restart the container with the existing volumes (data).
Obviously the container starts, but the service for ISPConfig is not started on port 8080. (Checked with netstat -tlupen).
To start the new container i've used the follwoing command (same as first creation of the container - without -e params):
docker run --name ispconfig \ -d \ -v ispconfig_mysql:/var/lib/mysql \ -v ispconfig_www:/var/www \ -v ispconfig_mail:/var/mail \ -p 30000-30009:30000-30009 \ -p 8080:8080 \ -p 53:53 \ -p 2222:22 \ jerob/docker-ispconfig /start.sh
Please can you tell me: What is the (correct) way to start a docker-ispconfig container with existing data?
Thanks for your reply.
Greeting, FrTj25