1
0
Files
MSE-CSEL/.devcontainer/docker-compose.yml
2023-02-23 20:46:06 +01:00

47 lines
1003 B
YAML

services:
toolchain:
image: csel/toolchain
build:
context: toolchain
dockerfile: Dockerfile
cap_add:
- SYS_PTRACE
security_opt:
- seccomp:unconfined
volumes:
- ..:/workspace:cached
- buildroot:/buildroot
- rootfs:/rootfs
- home:/root-home
# Overrides default command so things don't shut down after the process ends.
command: /bin/sh -c "while sleep 1000; do :; done"
samba:
image: dperson/samba
environment:
USERID: 0
GROUPID: 0
command: >-
-S
-u "root;toor"
-s "buildroot;/buildroot;no;no"
-s "rootfs;/rootfs;no;no"
-s "workspace;/workspace;no;no"
-s "home;/root-home;no;no"
-g "unix extensions = yes"
-g "vfs objects = catia fruit"
ports:
- "139:139"
- "1445:445"
volumes:
- ..:/workspace
- buildroot:/buildroot
- rootfs:/rootfs
- home:/root-home
volumes:
buildroot: {}
rootfs: {}
home: {}