1
0
Files
MSE-CSEL/.devcontainer/docker-compose.yml
Jacques Supcik ba8053f349 changes for 2024
2024-02-22 21:29:32 +00:00

44 lines
951 B
YAML

services:
toolchain:
image: csel/toolchain
build:
context: toolchain
dockerfile: Dockerfile
privileged: true
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: {}