18 lines
443 B
YAML
18 lines
443 B
YAML
|
version: '3.8'
|
||
|
|
||
|
services:
|
||
|
msrewards:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
# optional if you have Dockerfile in the same directory
|
||
|
# arguments:
|
||
|
# - ARG_NAME=value # If you have build arguments
|
||
|
image: msrewards
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- "1234:1234"
|
||
|
- "2345:2345"
|
||
|
shm_size: 2gb
|
||
|
volumes:
|
||
|
- "./:/app" # Mount the current directory to /app inside the container
|