server/compose.yaml

32 lines
739 B
YAML
Raw Normal View History

# Rx3-Docker/Server Docker Image
2024-08-25 18:17:03 +02:00
#-------------------------------------------------------------------------------
name: ${IMG_NAME}
2024-08-25 18:17:03 +02:00
services:
server:
container_name: ${IMG_NAME}
hostname: ${IMG_NAME}
2024-08-25 18:17:03 +02:00
image: ${IMG_URL}
2024-08-25 18:17:03 +02:00
build:
context: .
args:
- IMG_NAME=${IMG_NAME}
- IMG_NAME_FULL=${IMG_NAME_FULL}
2024-08-25 18:17:03 +02:00
- IMG_VERSION=${IMG_VERSION}
- IMG_MAINTAINER=${IMG_MAINTAINER}
- IMG_FROM_URL=${IMG_FROM_URL}
- SERVER_PORT_SV_INT=${SERVER_PORT_SV_INT}
2024-08-25 18:17:03 +02:00
restart: unless-stopped
environment:
SERVER_CROND_ENABLED: ${SERVER_CROND_ENABLED}
ports:
- "127.0.0.1:${SERVER_PORT_SV_EXT}:${SERVER_PORT_SV_INT}"