11 lines
215 B
YAML
11 lines
215 B
YAML
|
version: "3.8"
|
||
|
services:
|
||
|
mtg:
|
||
|
container_name: mtg
|
||
|
build: .
|
||
|
restart: always #change if you don't want your container restarting
|
||
|
environment:
|
||
|
- NODE_ENV=production
|
||
|
ports:
|
||
|
- 3001:3000
|