Skip to content

Instantly share code, notes, and snippets.

@17xande
Last active July 14, 2022 06:52
Show Gist options
  • Save 17xande/4f5ae070985c8f6829f8f30f1be275ff to your computer and use it in GitHub Desktop.
Save 17xande/4f5ae070985c8f6829f8f30f1be275ff 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