Steve/EV Dashboard/nginx 도커파일 및 설정파일 추가

This commit is contained in:
byun
2026-05-26 21:10:16 +09:00
parent 8617642fae
commit 607e4d758b
9 changed files with 402 additions and 0 deletions

31
steve/docker-compose.yml Normal file
View File

@@ -0,0 +1,31 @@
version: "3.0"
volumes:
db-data:
external: false
services:
db:
image: mariadb:10.11.16
restart: unless-stopped
ports:
- 3307:3306
environment:
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
MYSQL_DATABASE: stevedb
MYSQL_USER: steve
MYSQL_PASSWORD: changeme
app:
restart: unless-stopped
build: .
links:
- "db:mariadb"
volumes:
- .:/code
ports:
- "8180:8180"
- "8445:8443"
depends_on:
- db