MsRewards/docker-compose.yml

20 lines
420 B
YAML
Raw Permalink 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
container_name: MsRewards
2024-02-27 15:31:35 +01:00
restart: unless-stopped
ports:
- "1234:1234"
- "2345:2345"
shm_size: 2gb
volumes:
2024-02-28 14:40:12 +01:00
- "./data/:/data"