Stage 서버 배포 구현 - Jenkins의 freestyle 방식

This commit is contained in:
2026-07-10 18:27:36 +09:00
parent be5b2ad6e6
commit 97fa4d8390
7 changed files with 181 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
version: '3'
services:
chocomae-stage:
build: .
image: chocomae-stage:latest
container_name: chocomae-stage
hostname: chocomae-stage
volumes:
- ./chocomae:/var/www/html/mouse_typing
environment:
- TZ=Asia/Seoul
networks:
- proxy-network
restart: unless-stopped
networks:
proxy-network:
external: true