docker-compose.yaml (view raw)
1version: '3.8' 2 3services: 4 app: 5 build: . 6 image: ghcr.io/birabittoh/nds-converter:main 7 container_name: nds-converter 8 restart: unless-stopped 9 ports: 10 - 3000:3000 11 environment: 12 - PORT=3000 13 - MAX_SIZE_MB