mirror of
https://github.com/Alvin-Zilverstand/narrow_casting_system.git
synced 2026-03-06 13:24:46 +01:00
- Update docker-compose.yml to use modern 'docker compose' syntax (v2) - Fix GitHub Actions Docker login to use GitHub Container Registry (ghcr.io) - Add comprehensive GitHub repository settings documentation - Add alternative CI/CD workflow without Docker push requirement - Update package.json scripts for modern Docker commands - Add Docker security scanning and metadata extraction - Add repository permissions configuration for GitHub Actions - Update Docker documentation with modern practices This addresses the Docker login issues and modernizes the deployment process while providing fallback options for CI/CD implementation.
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
# SnowWorld Narrowcasting System - Docker Compose Configuration (v2)
|
|
|
|
name: snowworld-narrowcasting
|
|
|
|
services:
|
|
snowworld-narrowcasting:
|
|
build:
|
|
context: ../..
|
|
dockerfile: deployment/docker/Dockerfile
|
|
container_name: snowworld-narrowcasting
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ../../database:/app/database
|
|
- ../../logs:/app/logs
|
|
- ../../public/uploads:/app/public/uploads
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=3000
|
|
restart: unless-stopped
|
|
networks:
|
|
- snowworld-network
|
|
healthcheck:
|
|
test: ["CMD", "node", "-e", "require('http').get('http://localhost:3000/api/zones', (res) => { process.exit(res.statusCode === 200 ? 0 : 1) }).on('error', () => process.exit(1))"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
|
|
nginx:
|
|
image: nginx:alpine
|
|
container_name: snowworld-nginx
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ../configs/nginx.conf:/etc/nginx/nginx.conf:ro
|
|
- ../../ssl:/etc/nginx/ssl:ro
|
|
depends_on:
|
|
snowworld-narrowcasting:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|
|
networks:
|
|
- snowworld-network
|
|
|
|
networks:
|
|
snowworld-network:
|
|
driver: bridge
|
|
name: snowworld-network
|
|
|
|
volumes:
|
|
database-data:
|
|
name: snowworld-database
|
|
uploads-data:
|
|
name: snowworld-uploads
|
|
logs-data:
|
|
name: snowworld-logs |