This Dockerfile installs and configures Chef Server. It installs and configures Postfix for email notifications as well.
Also, It creates admin user with password admin123 by default. Please reset the password, email address and keys.
This Dockerfile has been tested with Chef Server v12.19.31.
docker pull sunggun/chef-server
Run:
docker run -d \
--name chef-server \
-p 443:443 \
sunggun/chef-serverPlease check the log when you run/start/restart the chef-server. It takes a while until fully startup.
docker logs -f chef-serverTo verify chef-server version:
docker exec -it chef-server cat /opt/opscode/version-manifest.json | grep build_versionThe Dockerfile defines mount points i order to support storing config, data ,and data backup in your storage.
/etc/opscode: Chef server home./var/opt/opscode: Data directory for all components./var/opt/chef-backup: Data backup directory. If you run thechef-server-ctl backupin the running container, the backup data archive will be stored in this directory.
docker run -d \
--name chef-server \
-v <your-chef-home-directory>:/etc/opscode:rw \
-v <your-data-directory>:/var/opt/opscode:rw \
-v <your-backup-directory>:/var/opt/chef-backup:rw \
-h <your-hostname> \
-p 443:443 \
sunggun/chef-serverExecute the following cli to find the keys.
admin user key:
docker exec -it chef-server cat /etc/opscode/admin.pemdefault group validator key:
docker exec -it chef-server cat /var/opscode/default-validator.pemBuild latest version: current latest is 12.19.31
docker build -t chef-server:latest -t chef-server:12.19.31 .For my workflow :-)
docker build -t sunggun/chef-server:latest -t sunggun/chef-server:12.19.31 .To build the chef-server image with specific version such as 12.19.31, you need to pass CHEF_SERVER_VERSION and CHEF_SERVER_DOWNLOAD_SHA256 build-arg.
Please find the VERSION and SHA256 for Ubuntu Linux 18.04 x86_64 from https://downloads.chef.io/chef-server/ubuntu/
docker build \
--build-arg CHEF_SERVER_VERSION=12.19.31 \
--build-arg CHEF_SERVER_DOWNLOAD_SHA256=bbf6127e03d10154e28b1270869731b38bd5a0981c9f9cb96f973c290d14c4df \
-t chef-server:12.19.31 \
.For my workflow:
docker build \
--build-arg CHEF_SERVER_VERSION=12.19.31 \
--build-arg CHEF_SERVER_DOWNLOAD_SHA256=bbf6127e03d10154e28b1270869731b38bd5a0981c9f9cb96f973c290d14c4df \
-t sunggun/chef-server:12.19.31 \
.