mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 02:02:14 +00:00
6 lines
246 B
Bash
6 lines
246 B
Bash
|
#!/bin/bash
|
||
|
DIR=$( cd $(dirname $0) ; pwd -P )
|
||
|
|
||
|
echo "Starting ONLY the bind9 server. To start an api server use the api server script"
|
||
|
docker-compose -f $DIR/../docker/docker-compose-func-test.yml --project-directory $DIR/../docker up -d bind9
|