mirror of
https://github.com/Screenly/Anthias.git
synced 2025-12-23 22:38:05 -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
|