26 lines
543 B
YAML
26 lines
543 B
YAML
version: "4"
|
|
services:
|
|
pica:
|
|
image: thebluestbird/pica-standalone:latest
|
|
volumes:
|
|
- picarun:/run/pica
|
|
- mysqld:/run/mysqld
|
|
depends_on:
|
|
- maria
|
|
apache:
|
|
build: ./apache
|
|
image: thebluestbird/pica-apache:latest
|
|
volumes:
|
|
- picarun:/run/pica
|
|
ports:
|
|
- 8080:80
|
|
maria:
|
|
build: ./maria
|
|
image: thebluestbird/pica-maria:latest
|
|
volumes:
|
|
- mysqld:/run/mysqld
|
|
volumes:
|
|
picarun:
|
|
mysqld:
|
|
|