feature/cicd (#2)
All checks were successful
continuous-integration/drone/push Build is passing

Co-authored-by: aovantsev <aovantsev@avito.ru>
Reviewed-on: #2
This commit is contained in:
2025-10-03 08:32:20 +00:00
parent 0dcb5d9b87
commit 78122bc996
4 changed files with 116 additions and 39 deletions

View File

@@ -1,24 +0,0 @@
version: '3.8'
services:
# Local Docker Registry for testing
registry:
image: registry:2
ports:
- "5000:5000"
volumes:
- registry-data:/var/lib/registry
environment:
REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY: /var/lib/registry
# The counter application
counter-app:
build: .
ports:
- "8080:8080"
depends_on:
- registry
image: localhost:5000/counter:latest
volumes:
registry-data: