twinkle/docker-compose.yml
2024-09-06 22:59:09 +08:00

24 lines
No EOL
479 B
YAML

version: '3.8'
services:
mitndev:
container_name: twinkle
build:
context: .
dockerfile: Dockerfile
ports:
# 3000 -> 2703
- "2704:3000"
environment:
NEXT_PUBLIC_SPARKLE_BASE_URL: https://sparkle-demo.ryawaa.com
# Optional: Uncomment the following line if you have a .env file
# env_file:
# - .env
restart: unless-stopped
networks:
- yanacloud
networks:
yanacloud:
name: yanacloud
external: true