mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 14:31:44 +01:00
32 lines
708 B
YAML
32 lines
708 B
YAML
version: "3.4"
|
|
services:
|
|
custom_base:
|
|
container_name: custom_base
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
- DOZZLE_FILTER=name=custom_base
|
|
- DOZZLE_BASE=/foobarbase
|
|
build:
|
|
context: ..
|
|
dozzle:
|
|
container_name: dozzle
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
- DOZZLE_FILTER=name=dozzle
|
|
build:
|
|
context: ..
|
|
integration:
|
|
build:
|
|
context: .
|
|
command: yarn test
|
|
volumes:
|
|
- ./__tests__:/app/__tests__
|
|
environment:
|
|
- DEFAULT_URL=http://dozzle:8080/
|
|
- CUSTOM_URL=http://custom_base:8080/foobarbase
|
|
depends_on:
|
|
- dozzle
|
|
- custom_base
|