web-landing-page/docker-compose.yml
Benoit Donneaux e3d22b97d6
All checks were successful
Jekyll / jekyll (push) Successful in 24s
Toward the minimal mockup (#13)
Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
Reviewed-on: #13
Co-authored-by: Benoit Donneaux <benoit@leastauthority.com>
Co-committed-by: Benoit Donneaux <benoit@leastauthority.com>
2024-11-19 11:54:59 +00:00

30 lines
556 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"
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