mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-16 10:59:53 +02:00
6 lines
116 B
Bash
Executable File
6 lines
116 B
Bash
Executable File
#!/bin/bash
|
|
for file in tests/compose/*.env ; do
|
|
cp $file .env
|
|
docker-compose -f tests/compose/run.yml up -d
|
|
done
|