25 lines
418 B
YAML
25 lines
418 B
YAML
# 2022-10-29
|
|
# Hyperling.com configuration.
|
|
|
|
services:
|
|
app:
|
|
container_name: www-app
|
|
build:
|
|
context: ./
|
|
network: host
|
|
restart: always
|
|
ports:
|
|
- 8317:8080
|
|
environment:
|
|
- BRANCH=$BRANCH
|
|
- CPU=$CPU
|
|
- MEM=$MEM
|
|
volumes:
|
|
- ./files:/var/www/api/files
|
|
deploy:
|
|
mode: global
|
|
resources:
|
|
limits:
|
|
cpus: $CPU
|
|
memory: $MEM
|