docker-itmgmt/snipeit/docker-compose.yml

28 lines
393 B
YAML
Raw Normal View History

2023-03-27 14:40:17 +00:00
version: '3'
services:
mysql:
image: mysql:latest
container_name: snipeit-db
env_file:
- ./.env
restart: unless-stopped
volumes:
- db:/var/lib/mysql
app:
image: snipe/snipe-it:latest
container_name: snipeit-app
env_file:
- ./.env
ports:
- "8090:80"
restart: unless-stopped
depends_on:
- mysql
volumes:
db: