feat(docker): restructure Docker setup with new Dockerfiles and docker-compose files
Deploy / deploy (push) Failing after 2m50s

This commit is contained in:
ngthanhvu
2026-08-10 03:16:31 -04:00
parent 11871805dd
commit a895fbb264
5 changed files with 48 additions and 3 deletions
+45
View File
@@ -0,0 +1,45 @@
services:
mysql:
image: mysql:8.0
container_name: cinek-mysql
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-rootpassword}
MYSQL_DATABASE: ${MYSQL_DATABASE:-cinek}
MYSQL_USER: ${MYSQL_USER:-cinek}
MYSQL_PASSWORD: ${MYSQL_PASSWORD:-cinekpassword}
ports:
- "3306:3306"
volumes:
- mysql_data:/var/lib/mysql
redis:
image: redis:7-alpine
container_name: cinek-redis
restart: unless-stopped
ports:
- "6379:6379"
volumes:
- redis_data:/data
cinek:
build:
context: ..
dockerfile: docker/Dockerfile.prod
container_name: cinek
restart: unless-stopped
environment:
NODE_ENV: production
HOST: 0.0.0.0
PORT: 3002
DATABASE_URL: ${DATABASE_URL}
REDIS_URL: ${REDIS_URL}
ports:
- "3002:3002"
depends_on:
- mysql
- redis
volumes:
mysql_data:
redis_data:
@@ -24,8 +24,8 @@ services:
cinek: cinek:
build: build:
context: . context: ..
dockerfile: Dockerfile dockerfile: docker/Dockerfile
container_name: cinek container_name: cinek
restart: unless-stopped restart: unless-stopped
environment: environment:
@@ -36,7 +36,7 @@ services:
ports: ports:
- "3002:3002" - "3002:3002"
volumes: volumes:
- .:/app - ../:/app
- /app/node_modules - /app/node_modules
depends_on: depends_on:
- mysql - mysql