mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-05-31 00:04:27 +08:00
* refactor: replace nginx with frankenphp
* fix: add git and zip to the docker image
* refactor: parameterize bin/{create,remove}-external-network.sh
+resilience in remove script
* feat: add traefik proxy
* feat: add traefik-up and traefik-down Makefile targets
* doc: add traefik section to README
* doc: fix thinko
* docs: update traefik README
add note that you still need to edit /etc/hosts
* refactor: docker-compose configs for both nginx and frankenphp
* fix: use correct path to Dockerfile in docker-compose.frankenphp.yml
* feat: switch web backends via environment var (default nginx)
10 lines
257 B
Bash
Executable file
10 lines
257 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Create network if it doesn't exist already
|
|
network_name=${1?no network name specified}
|
|
|
|
if ! docker network inspect "$network_name" &> /dev/null; then
|
|
docker network create "$network_name"
|
|
echo "Created network $network_name"
|
|
fi
|
|
|