Some checks failed
Build and Push Docker Image / buildx (push) Has been cancelled
19 lines
445 B
YAML
19 lines
445 B
YAML
services:
|
|
Timeline:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
image: registry.cn-beijing.aliyuncs.com/licsber/timeline:latest
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- PORT=3000
|
|
- JWT_SECRET=${JWT_SECRET:-change-this-secret-key-in-production}
|
|
- DB_PATH=/app/data/data.db
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|