MsRewards/docker-compose.yml

18 lines
443 B
YAML
Raw Normal View History

2024-02-27 15:31:35 +01:00
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