30 lines
526 B
YAML
30 lines
526 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
api:
|
|
build:
|
|
context: ../server
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
PORT: "8080"
|
|
DB_HOST: host.docker.internal
|
|
DB_PORT: "13306"
|
|
DB_USER: root
|
|
DB_PASS: "123456"
|
|
DB_NAME: inchstep
|
|
JWT_SECRET: change-me-in-production
|
|
REDIS_URL: "redis://redis:6379/0"
|
|
depends_on:
|
|
- redis
|
|
restart: unless-stopped
|
|
|
|
redis:
|
|
image: redis:7-alpine
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
volumes:
|
|
mysql_data:
|