17 lines
368 B
YAML
Executable file
17 lines
368 B
YAML
Executable file
services:
|
|
stacosys:
|
|
container_name: stacosys
|
|
image: source.madyanne.fr/yax/stacosys
|
|
volumes:
|
|
- ${ROOT_INSTALL}/data/stacosys:/config
|
|
restart: unless-stopped
|
|
expose:
|
|
- 8100
|
|
blog:
|
|
container_name: blog
|
|
image: source.madyanne.fr/yax/blog
|
|
depends_on:
|
|
- stacosys
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8011:80"
|