-
-
Save abdul/793daa3dffe0b6b44cb711dad21682bb 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