12 lines
376 B
Bash
12 lines
376 B
Bash
#!/usr/bin/bash
|
|
# docker login --username baloan --password 'yZBCUs5&@?:.'
|
|
# docker run -d --name apache -p80:80 -v/root/kopano/dist:/var/www httpd
|
|
# export DOCKER_BUILDKIT=1
|
|
docker build -t postfix .
|
|
docker run -d --name postfix -v/root/kopano/postfix/etc/postfix:/etc/postfix postfix
|
|
docker logs -f postfix
|
|
docker exec -it postfix sh
|
|
|
|
docker kill postfix
|
|
docker rm postfix
|