25 lines
455 B
YAML
25 lines
455 B
YAML
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:
|