selfhosting/01-blog/docker-compose.blog.yml

20 lines
No EOL
503 B
YAML
Executable file

name: 01-blog
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
environment:
- GIT_TOKEN=${GIT_TOKEN}
depends_on:
- stacosys
restart: unless-stopped
ports:
- 8011:80