Files
kopano-docker/postfix/scratchpad.sh
2023-04-09 20:48:49 +00:00

11 lines
327 B
Bash

#!/usr/bin/bash
# export DOCKER_BUILDKIT=1
# docker run -d --name apache -p80:80 -v/root/kopano/dist:/var/www httpd
docker build -t postfix .
docker run -d --name postfix -v/root/kopano/postfix/etc/postfix:/etc/postfix -p8025:25 postfix
docker logs -f postfix
docker exec -it postfix sh
docker kill postfix
docker rm postfix