mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-23 21:01:53 +01:00
18 lines
315 B
YAML
18 lines
315 B
YAML
volumes:
|
|
db_data:
|
|
storage:
|
|
|
|
services:
|
|
app:
|
|
image: snipe/snipe-it:${APP_VERSION}
|
|
restart: unless-stopped
|
|
volumes:
|
|
- storage:/var/lib/snipeit
|
|
ports:
|
|
- "${APP_PORT:-8000}:80"
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
restart: true
|
|
env_file:
|
|
- .env |