mirror of
https://github.com/Screenly/Anthias.git
synced 2026-02-20 07:54:27 -05:00
13 lines
213 B
Bash
Executable File
13 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
COMPOSE_ARGS=(
|
|
'-f' 'docker-compose.dev.yml'
|
|
)
|
|
|
|
bin/generate_dev_mode_dockerfiles.sh
|
|
|
|
docker compose "${COMPOSE_ARGS[@]}" down
|
|
docker compose "${COMPOSE_ARGS[@]}" up -d --build
|