dev #5

Merged
wtukatyr merged 5 commits from dev into main 2025-06-06 00:33:56 +03:00
2 changed files with 11 additions and 7 deletions

View File

@@ -1,13 +1,11 @@
name: CI-pipeline
on:
workflow_dispatch:
push:
branches:
- dev
pull_request:
branches:
- main
types:
- opened
jobs:
linters:

View File

@@ -1,9 +1,9 @@
services:
app:
build: .
django-app:
image: wtukatyr/django-example-app:latest
container_name: django-app
ports:
- "80:8000"
- "8989:8000"
depends_on:
- db
environment:
@@ -14,6 +14,8 @@ services:
DATABASE_PORT: ${DATABASE_PORT}
env_file:
- .env
networks:
- proxy-common
db:
image: postgres:14
restart: always
@@ -35,3 +37,7 @@ services:
volumes:
pg-data:
networks:
proxy_common:
external: true