cicd 7
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 1m13s

This commit is contained in:
Gal Podlipnik 2025-06-12 16:37:18 +02:00
parent e3ae7dc422
commit 6328f3e0c1

View File

@ -54,7 +54,6 @@ jobs:
- name: Create docker-compose.yml
run: |
cat > docker-compose.yml << 'EOL'
version: '3.8'
services:
backend:
image: harbor.galpodlipnik.com/chat-app/backend:latest
@ -62,7 +61,7 @@ jobs:
env_file:
- ./.env
ports:
- "3000:3000"
- "3001:3000"
networks:
- chat-network
@ -70,7 +69,7 @@ jobs:
image: harbor.galpodlipnik.com/chat-app/frontend:latest
restart: always
ports:
- "80:80"
- "5173:80"
depends_on:
- backend
networks: