URLShortener/k8s/docker-k8s/docker-compose.yml
2024-02-22 21:39:09 +05:30

26 lines
398 B
YAML

version: '3.8'
services:
shortener-app:
labels:
- "TUSC"
#Build from docker hub image .Comment/Uncomment Below
image: nmpl/shortener:k8s
#Build from local Dockerfile.Comment/Uncomment Below
#build:
#dockerfile: Dockerfile
ports:
- "8080:8080"
- "3306:3306"
volumes:
- data:/var/lib/mysql
restart: unless-stopped
volumes:
data: