twinkle/docker-compose.yml

24 lines
479 B
YAML
Raw Normal View History

2024-09-06 14:59:09 +00:00
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