mirror of
https://github.com/optim-enterprises-bv/databunker.git
synced 2025-10-29 17:12:22 +00:00
8 lines
277 B
Bash
Executable File
8 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION=$(cat ./version.txt)
|
|
docker build -t securitybunker/databunker:$VERSION .
|
|
docker tag securitybunker/databunker:$VERSION securitybunker/databunker:latest
|
|
docker-compose -f docker-compose-pgsql.yml down || true
|
|
docker-compose -f docker-compose-pgsql.yml up -d
|