From 3b6493cdd808d8334377f590cdd44383e6bd83be Mon Sep 17 00:00:00 2001 From: Tim Dawson Date: Tue, 20 Jul 2021 00:28:25 +1200 Subject: [PATCH] Added other containers --- .circleci/config.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 94f3980..6151c5d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,6 +5,26 @@ jobs: working_directory: ~/repo docker: - image: circleci/golang:1.16 + - image: mariadb:10.1 + environment: + MYSQL_ROOT_PASSWORD: supersecret + - image: psitrax/powerdns + environment: + MYSQL_USER: root + MYSQL_PASS: supersecret + MYSQL_PORT: "3306" + command: + - "--webserver=yes" + - "--api=yes" + - "--api-key=password" + - "--webserver-port=8080" + - "--webserver-loglevel=detailed" + - "--loglevel=10" + - "--log-dns-queries=yes" + - "--master" + - "--disable-syslog" + - "--webserver-address=0.0.0.0" + - "--webserver-allow-from=0.0.0.0/0" steps: - checkout - restore_cache: