8 lines
220 B
Bash
Executable File
8 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Compile the source
|
|
docker build -t mistox-sql ./database
|
|
docker build --build-arg BASE_URL=https://mistox.com -t mistox-website .
|
|
|
|
# Start the servers
|
|
docker compose up -d --force-recreate --remove-orphans |