You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
565 B

7 months ago
#!/bin/bash
docker compose stop
7 months ago
wait
7 months ago
docker build -t php81:v1 php81-apache
7 months ago
gunzip dump/data.sql.gz
gunzip dump/district.sql.gz
7 months ago
gunzip dump/community.sql.gz
7 months ago
cp -n config.sample.php config.php
7 months ago
docker compose up -d
7 months ago
wait
7 months ago
docker exec -it unfallkarte-db mysqladmin -uroot -pgeheim create unfallstatistik
7 months ago
docker exec -i unfallkarte-db mysql -uroot -pgeheim unfallstatistik < ./dump/data.sql
docker exec -i unfallkarte-db mysql -uroot -pgeheim unfallstatistik < ./dump/district.sql
7 months ago
docker exec -i unfallkarte-db mysql -uroot -pgeheim unfallstatistik < ./dump/community.sql