Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3.8"
- services:
- samba:
- image: dperson/samba
- container_name: samba
- volumes:
- - /path/to/volume:/volume_shared
- - /path/to/volume2:/volume_shared2
- - /path/to/volume3:/volume_shared3
- ports:
- - "137:137/udp"
- - "138:138/udp"
- - "139:139/tcp"
- - "445:445/tcp"
- tty: true
- stdin_open: true
- restart: unless-stopped
- networks:
- - media
- command: '-s "volume_shared;/volume_shared" -s "volume_shared2;/volume_shared2" -s "volume_shared3;/volume_shared3" -u "user;password" -p'
- networks:
- media:
- external: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement