mirror of
https://github.com/outbackdingo/Mailu.git
synced 2026-01-27 18:19:36 +00: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
|