Files
bentopdf/docker-compose.dev.yml

14 lines
429 B
YAML
Raw Normal View History

services:
bentopdf:
build:
context: .
dockerfile: Dockerfile
args:
APP_USER_ID: 1001 // default value is 1001 can be customized to any other value
APP_GROUP_ID: 1001 // default value is 1001 can be customized to any other value
SIMPLE_MODE: false // false for default mode, true for simple mode
container_name: bentopdf
ports:
- '3000:80'
restart: unless-stopped