diff --git a/docker-compose.yml b/docker-compose.yml index c0c612c..b17aea3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: web: - image: ghcr.io/seanmorley15/adventurelog-frontend:development + image: ghcr.io/seanmorley15/adventurelog-frontend:beta container_name: adventurelog-frontend restart: unless-stopped env_file: .env @@ -18,7 +18,7 @@ services: - postgres_data:/var/lib/postgresql/data/ server: - image: ghcr.io/seanmorley15/adventurelog-backend:development + image: ghcr.io/seanmorley15/adventurelog-backend:beta container_name: adventurelog-backend restart: unless-stopped env_file: .env diff --git a/install_adventurelog.sh b/install_adventurelog.sh index b94c383..a629028 100755 --- a/install_adventurelog.sh +++ b/install_adventurelog.sh @@ -484,7 +484,6 @@ wait_for_services() { local max_attempts=30 local attempt=1 - while [ $attempt -le $max_attempts ]; do if curl -s -o /dev/null -w "%{http_code}" "$FRONTEND_ORIGIN" | grep -q "200\|404\|302"; then log_success "Frontend is responding" @@ -511,7 +510,6 @@ print_success_message() { local ip_address ip_address=$(hostname -I 2>/dev/null | cut -d' ' -f1 || echo "localhost") - clear echo "" cat << 'EOF' ╔══════════════════════════════════════════════════════════════════════╗