uLinkShortener/docker-compose-build.yml
2025-07-11 00:59:08 +02:00

15 lines
No EOL
348 B
YAML

services:
ulinkshortener:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- MONGO_URI=${MONGO_URI}
- MONGO_DB_NAME=${MONGO_DB_NAME}
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
- NEXTAUTH_URL=${NEXTAUTH_URL}
volumes:
- ./.env:/app/.env
restart: unless-stopped