web-landing-page/docker-compose.yml
Benoit Donneaux 74bf4ce377
All checks were successful
Jekyll / jekyll (pull_request) Successful in 46s
Jekyll cleanup / jekyll_cleanup (pull_request) Successful in 15s
Enable livereload and adapt the doc accordingly
Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
2025-05-02 09:55:17 +02:00

31 lines
578 B
YAML

version: '3'
services:
jekyll:
build:
context: docker/jekyll
args:
uid: "${_UID:-1000}"
user: "${_USER:-appuser}"
gid: "${_GID:-1000}"
group: "${_GROUP:-appgroup}"
volumes:
- .:/appdata
working_dir: /appdata
ports:
- "4000:4000"
- "35729:35729"
stdin_open: true
tty: true
hostname: jekyll.local
container_name: jekyll.local
network_mode: "bridge"
deploy:
resources:
limits:
cpus: '1.5'
memory: 512M
networks:
bridge:
external: true