diff --git a/compose.yml b/compose.yml index 05982c9..a0f3bce 100644 --- a/compose.yml +++ b/compose.yml @@ -1,9 +1,9 @@ version: '3.3' services: - davdiscover: - container_name: davdiscover + mailautoconf: + container_name: mailautoconf ports: - '8010:80' volumes: - './config:/var/www/html/config' - image: pswilde/davdiscover + image: pswilde/mailautoconf diff --git a/podman-run.sh b/podman-run.sh index 8f2d400..a89c52b 100644 --- a/podman-run.sh +++ b/podman-run.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -podman run --name davdiscover \ +podman run --name mailautoconf \ --rm \ -p "8010:80" \ -v ./config:/var/www/html/config \ - pswilde/davdiscover + pswilde/mailautoconf diff --git a/test-server.sh b/test-server.sh index 98b0efe..17437b2 100644 --- a/test-server.sh +++ b/test-server.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -podman run --name davdiscover-test \ +podman run --name mailautoconf-test \ --rm \ -p "8010:80" \ -v ./src:/var/www/html/ \