Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '3.8'
- # https://gitlab.com/MiGoller/ShinobiDocker
- services:
- shinobi-db:
- image: mariadb:10.5
- container_name: shinobi-db
- hostname: shinobi-db
- restart: "no"
- env_file:
- - MySQL.env
- volumes:
- - ./data:/var/lib/mysql
- networks:
- - shinobi
- shinobi:
- image: migoller/shinobidocker:microservice-alpine
- container_name: shinobi
- hostname: shinobi
- restart: "no"
- env_file:
- - MySQL.env
- - Shinobi.env
- environment:
- - "TZ=Europe/Berlin"
- volumes:
- - /etc/localtime:/etc/localtime:ro
- - /etc/timezone:/etc/timezone:ro
- - ./config:/config
- - ./videos:/opt/shinobi/videos
- - /dev/shm/shinobiDockerTemp:/dev/shm/streams
- # devices:
- # - /dev/dri:/dev/dri
- ports:
- - "8088:8080"
- networks:
- - traefik
- - shinobi
- networks:
- traefik:
- external:
- name: traefik
- shinobi:
- external:
- name: shinobi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement