mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
17 lines
367 B
YAML
17 lines
367 B
YAML
version: '3.6'
|
|
services:
|
|
neko:
|
|
network_mode: host
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
shm_size: '2gb'
|
|
cap_add:
|
|
- SYS_PTRACE
|
|
security_opt:
|
|
- seccomp:unconfined
|
|
volumes:
|
|
- /home/neko/src:/workspace
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
command: "/bin/sh -c \"while sleep 1000; do :; done\""
|