This commit is contained in:
arrelin
2025-12-15 18:53:57 +03:00
parent 20ad9f5833
commit a5a9c0e2a7
2 changed files with 91 additions and 0 deletions

44
.github/workflows/docker-publish.yml vendored Normal file
View File

@@ -0,0 +1,44 @@
name: Build and Publish Images
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push backend image
uses: docker/build-push-action@v6
with:
context: ./backend
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/family_budget-backend:latest
ghcr.io/${{ github.repository_owner }}/family_budget-backend:${{ github.sha }}
- name: Build and push frontend image
uses: docker/build-push-action@v6
with:
context: ./frontend
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/family_budget-frontend:latest
ghcr.io/${{ github.repository_owner }}/family_budget-frontend:${{ github.sha }}

47
docker-compose.prod.yml Normal file
View File

@@ -0,0 +1,47 @@
version: '3.8'
services:
postgres:
image: postgres:16-alpine
container_name: family_budget_db
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
ports:
- "${POSTGRES_PORT}:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- app_network
backend:
image: ghcr.io/${OWNER:-${COMPOSE_PROJECT_NAME}}/family_budget-backend:latest
container_name: family_budget_backend
environment:
DATABASE_URL: postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}
RUST_LOG: ${RUST_LOG:-info}
ports:
- "8080:8080"
depends_on:
- postgres
networks:
- app_network
frontend:
image: ghcr.io/${OWNER:-${COMPOSE_PROJECT_NAME}}/family_budget-frontend:latest
container_name: family_budget_frontend
ports:
- "80:80"
depends_on:
- backend
networks:
- app_network
volumes:
postgres_data:
driver: local
networks:
app_network:
driver: bridge