Skip to content

Instantly share code, notes, and snippets.

@abdul
Forked from 17xande/snipe-it docker-compose.yml
Created August 25, 2017 11:28
Show Gist options
  • Save abdul/793daa3dffe0b6b44cb711dad21682bb to your computer and use it in GitHub Desktop.
Save abdul/793daa3dffe0b6b44cb711dad21682bb to your computer and use it in GitHub Desktop.
test docker-compose file for Snipe-IT
version: "3"
services:
snipeit:
env_file: ./snipe-it.env
image: snipe/snipe-it
depends_on:
- mysql
ports:
- "80:80"
volumes:
- data:/var/lib/snipeit
mysql:
env_file: mysql.env
image: mysql:5.6
volumes:
- database:/var/lib/mysql
ports:
- "3306:3306"
volumes:
data: {}
database: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment