mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-26 04:28:37 +08:00
15 lines
235 B
Bash
Executable file
15 lines
235 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -e
|
|
|
|
if [ ! -f services-up ]; then
|
|
cd ci
|
|
fi
|
|
|
|
filename="docker-compose-$1.yml"
|
|
|
|
docker compose --file "$filename" up -d
|