Adding in calebburkedev
This commit is contained in:
@@ -0,0 +1,12 @@
|
|||||||
|
services:
|
||||||
|
app:
|
||||||
|
image: gitea.burke.host/burkkyy/calebburke.dev:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
NODE_ENV: production
|
||||||
|
ports:
|
||||||
|
- "${HOST_PORT:-3000}:${HOST_PORT:-3000}"
|
||||||
|
volumes:
|
||||||
|
- ./.env:/home/node/app/.env.production
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
docker compose -f docker-compose.gitea-runner.yml up --remove-orphans -d
|
docker compose -f gitea-runner/docker-compose.gitea-runner.yml up --remove-orphans -d
|
||||||
|
docker compose -f calebburkedev/docker-compose.calebburkedev.yml up --remove-orphans -d
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ RED=$'\033[0;31m'
|
|||||||
YELLOW=$'\033[0;33m'
|
YELLOW=$'\033[0;33m'
|
||||||
RESET=$'\033[0m'
|
RESET=$'\033[0m'
|
||||||
|
|
||||||
for f in docker-compose*.yml; do
|
for f in $(find . -name "docker-compose*.yml" | sort); do
|
||||||
[[ -f "$f" ]] || continue
|
[[ -f "$f" ]] || continue
|
||||||
running=$(docker compose -f "$f" ps -q --status running 2>/dev/null | wc -l)
|
running=$(docker compose -f "$f" ps -q --status running 2>/dev/null | wc -l)
|
||||||
total=$(docker compose -f "$f" config --services 2>/dev/null | wc -l)
|
total=$(docker compose -f "$f" config --services 2>/dev/null | wc -l)
|
||||||
|
|||||||
Reference in New Issue
Block a user