krata/docker-compose.yml

15 lines
308 B
YAML
Raw Permalink Normal View History

2024-04-11 21:43:48 +02:00
networks:
snowboard:
name: snowboard
external: true
2024-04-10 10:49:16 +02:00
services:
jekyll:
build: .
2024-04-11 21:43:48 +02:00
restart: always
2024-04-10 10:49:16 +02:00
volumes:
- .:/app
container_name: jekyll
2024-04-11 21:43:48 +02:00
networks:
- snowboard
2024-04-12 08:42:45 +02:00
command: bundle exec jekyll serve --host 0.0.0.0 -o https://www.cscherr.de:4000 --port 4000