fix: static IPs 172.16.0.0/24 in stack.yaml
This commit is contained in:
parent
30b0b88660
commit
634cab3464
2 changed files with 7 additions and 4 deletions
|
|
@ -17,7 +17,8 @@ services:
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
networks:
|
networks:
|
||||||
- nextwks-net
|
nextwks-net:
|
||||||
|
ipv4_address: 172.16.0.10
|
||||||
|
|
||||||
authelia:
|
authelia:
|
||||||
image: git24hcom/authelia:latest
|
image: git24hcom/authelia:latest
|
||||||
|
|
@ -35,7 +36,8 @@ services:
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
networks:
|
networks:
|
||||||
- nextwks-net
|
nextwks-net:
|
||||||
|
ipv4_address: 172.16.0.11
|
||||||
|
|
||||||
launcher:
|
launcher:
|
||||||
image: alpine:latest
|
image: alpine:latest
|
||||||
|
|
@ -56,7 +58,8 @@ services:
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
networks:
|
networks:
|
||||||
- nextwks-net
|
nextwks-net:
|
||||||
|
ipv4_address: 172.16.0.12
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
nextwks-net:
|
nextwks-net:
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@ if [ "$GREENFIELD" = true ]; then
|
||||||
|
|
||||||
# Podman network + deploy stack
|
# Podman network + deploy stack
|
||||||
echo "[5/5] Deploying containers on $NETWORK_NAME..."
|
echo "[5/5] Deploying containers on $NETWORK_NAME..."
|
||||||
podman network create "$NETWORK_NAME" 2>&1 || true
|
podman network create --subnet 172.16.0.0/24 "$NETWORK_NAME" 2>&1 || true
|
||||||
podman-compose -f "$TARGET_DIR/compose/stack.yaml" down 2>/dev/null || true
|
podman-compose -f "$TARGET_DIR/compose/stack.yaml" down 2>/dev/null || true
|
||||||
podman-compose -f "$TARGET_DIR/compose/stack.yaml" up -d 2>&1 || echo "[WARN] Stack deploy had issues"
|
podman-compose -f "$TARGET_DIR/compose/stack.yaml" up -d 2>&1 || echo "[WARN] Stack deploy had issues"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue