19 lines
282 B
YAML
19 lines
282 B
YAML
services:
|
|
app:
|
|
image: ${REGISTRY}/${IMAGE_NAME}:${TAG}
|
|
container_name: scheduler-app
|
|
|
|
restart: always
|
|
|
|
volumes:
|
|
- /home/script:/home/script
|
|
|
|
mem_limit: 50m
|
|
cpus: 0.01
|
|
networks:
|
|
- scheduler-net
|
|
|
|
networks:
|
|
scheduler-net:
|
|
external: true
|