mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 02:02:14 +00:00
- Move away from using multiple images for "quickstart" and instead use a single "integration" image which provides all of the dependencies - Update `docker-up-vinyldns.sh` to support the new `integration` image - Update `remove-vinyl-containers.sh` to more cleanly.. clean up - Update `verify.sh` to more reliably run `sbt` targets - Update `build/docker/api/application.conf` to allow for overrides and default to the `vinyldns-integration` image - Update `build/docker/portal/application.conf` to allow overrides and use `vinyldns-integration` image - Update `build/docker/portal/Dockerfile` to use `vinyldns/build:base-build-portal` to reduce need to download dependencies over and over - Update `api/assembly` sbt target to output to `assembly` rather than some deeply nested folder in `**/target` - Update documentation to reflect changes - Move `docker/` directory to `quickstart/` to reduce confusion with the `build/docker` directory - Move `bin/` to `utils/` since the files are binaries - Add `.dockerignore` to root
18 lines
530 B
Bash
18 lines
530 B
Bash
REST_PORT=9000
|
|
|
|
# portal settings
|
|
PORTAL_PORT=9001
|
|
PLAY_HTTP_SECRET_KEY=change-this-for-prod
|
|
VINYLDNS_BACKEND_URL=http://vinyldns-integration:9000
|
|
|
|
SQS_ENDPOINT=http://vinyldns-integration:19003
|
|
MYSQL_ENDPOINT=vinyldns-integration:19002
|
|
TEST_LOGIN=true
|
|
|
|
JDBC_DRIVER=org.mariadb.jdbc.Driver
|
|
JDBC_URL=jdbc:mariadb://vinyldns-integration:19002/vinyldns?user=root&password=pass
|
|
JDBC_MIGRATION_URL=jdbc:mariadb://vinyldns-integration:19002/?user=root&password=pass
|
|
JDBC_USER=root
|
|
JDBC_PASSWORD=pass
|
|
DEFAULT_DNS_ADDRESS=127.0.0.1:19001
|