11 lines
300 B
YAML
11 lines
300 B
YAML
version: '3.8'
|
|
services:
|
|
exercise-app:
|
|
build: .
|
|
container_name: exercise-app
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3005:80"
|
|
volumes:
|
|
# Đường dẫn đã được chuẩn hóa theo tên dự án mới
|
|
- /opt/exercise-app/data.json:/usr/share/nginx/html/data.json |