Arnaud G. GIBERT
c2b1abf29d
- New version naming standard, - Now use docker_tools for .env building, - Add ceteval bash function, - Strip down the base: - Remove python, - Remove dnf, - Rmove xz, - Remove unused libraries.
26 lines
579 B
YAML
26 lines
579 B
YAML
# Rx3-Docker/Base Mageia Docker Image
|
|
#-------------------------------------------------------------------------------
|
|
|
|
name: ${IMG_NAME}
|
|
|
|
services:
|
|
|
|
base:
|
|
container_name: ${IMG_NAME}
|
|
hostname: ${IMG_NAME}
|
|
|
|
image: ${IMG_URL}
|
|
|
|
build:
|
|
context: .
|
|
args:
|
|
- IMG_NAME=${IMG_NAME}
|
|
- IMG_NAME_FULL=${IMG_NAME_FULL}
|
|
- IMG_VERSION=${IMG_VERSION}
|
|
- IMG_MAINTAINER=${IMG_MAINTAINER}
|
|
- LANG=${LANG}
|
|
- LANGUAGE=${LANGUAGE}
|
|
- LOCALTIME=${LOCALTIME}
|
|
|
|
restart: unless-stopped
|