Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aoirint/opendkim-docker
OpenDKIM in Docker
https://github.com/aoirint/opendkim-docker
Last synced: about 1 month ago
JSON representation
OpenDKIM in Docker
- Host: GitHub
- URL: https://github.com/aoirint/opendkim-docker
- Owner: aoirint
- Created: 2023-12-19T11:28:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-19T12:20:00.000Z (about 1 year ago)
- Last Synced: 2023-12-20T17:05:08.180Z (about 1 year ago)
- Language: Dockerfile
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# opendkim-docker
```shell
mkdir -p ./volumes/{opendkim_config,opendkim_dkimkeys}
sudo chown -R "1000:1000" ./volumes/opendkim_config
sudo chown -R "101:101" ./volumes/opendkim_dkimkeyscp template.opendkim.conf ./volumes/opendkim_config/opendkim.conf
touch ./volumes/opendkim_config/KeyTable
touch ./volumes/opendkim_config/SigningTablesudo docker build -t aoirint/opendkim .
sudo docker run --rm -it -v "./volumes/opendkim_config/opendkim.conf:/etc/opendkim.conf" -v "./volumes/opendkim_config/KeyTable:/etc/opendkim/KeyTable" -v "./volumes/opendkim_config/SigningTable:/etc/opendkim/SigningTable" -v "./volumes/opendkim_dkimkeys:/etc/dkimkeys" -p "127.0.0.1:8891:8891" aoirint/opendkim
```