mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-26 07:13:41 +01:00
20 lines
400 B
YAML
20 lines
400 B
YAML
version: "3.4"
|
|
services:
|
|
dozzle:
|
|
container_name: dozzle
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
- DOZZLE_FILTER=name=dozzle
|
|
build:
|
|
context: ../
|
|
integration:
|
|
image: amir20/docker-alpine-puppeteer:edge
|
|
command: npm it
|
|
volumes:
|
|
- ./:/app/
|
|
environment:
|
|
- BASE=http://dozzle:8080/
|
|
depends_on:
|
|
- dozzle
|