mirror of
https://github.com/lingble/Mailu.git
synced 2026-03-20 03:50:30 +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
|