forked from Gitlink/soft_bot
19 lines
412 B
YAML
19 lines
412 B
YAML
version: '3'
|
|
services:
|
|
gitlink-softbot:
|
|
container_name: softbot
|
|
image: softbot:1.0.0
|
|
build:
|
|
context: ../
|
|
dockerfile: docker/Dockerfile
|
|
volumes:
|
|
- ./config/softbot_application.yml:/data/config/softbot_application.yml
|
|
ports:
|
|
- "8069:8081"
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 800M
|
|
restart: always |