Last active
July 14, 2022 06:52
-
-
Save 17xande/4f5ae070985c8f6829f8f30f1be275ff to your computer and use it in GitHub Desktop.
test docker-compose file for Snipe-IT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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