mirror of
https://gitea.zaclys.com/yannic/selfhosting.git
synced 2026-04-22 15:54:25 +02:00
18 lines
368 B
YAML
Executable File
18 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"
|