DNS Server with Django admin (Python 3.11)
git clone https://github.com/AikoSora/dns-server.git && cd dns-serverpython3 -m venv env && source env/bin/activatepython -m pip install pipenv && pipenv installcd app && python manage.py migratesudo python manage.py rundnsserver --host $YOUR_IPuse dig to test server
dig @$YOUR_IP example.compython manage.py createsuperuserpython manage.py runserverClone repo
git clone https://github.com/AikoSora/dns-server.git && cd dns-serverConfigure example.env file and run the following command
cp example.env .envConfigure docker-compose.override.yml.dist file and run the following command
cp docker-compose.override.yml.dist docker-compose.override.ymlRun docker-compose
docker-compose up -dPerform the migration
docker-compose exec -w /app server python manage.py migrateCreate superuser in admin
docker-compose exec -w /app server python manage.py createsuperuser