Files
docker-qt/docker-compose.yml

27 lines
451 B
YAML
Raw Normal View History

2021-01-25 23:39:59 -05:00
version: "3.6"
2021-01-25 21:01:37 -05:00
services:
2021-01-25 21:06:40 -05:00
worker:
2021-01-25 21:01:37 -05:00
build: .
image: fffaraz/qt:latest
2021-01-25 21:09:10 -05:00
hostname: worker
2021-01-25 23:39:59 -05:00
privileged: true
tty: true
stdin_open: true
cap_add:
- SYS_PTRACE
- SYS_ADMIN
ulimits:
nproc: 655353
nofile:
soft: 20000
hard: 40000
2021-01-25 23:31:56 -05:00
tmpfs:
- /run
- /tmp
2021-01-25 21:01:37 -05:00
volumes:
- ./volumes/repo:/root/repo
- ./volumes/conan:/root/.conan/data
ports:
2021-01-25 21:06:40 -05:00
- "2222:22"