web-landing-page/docker-compose.yml
Benoit Donneaux bbf59e574b Use ubuntu instead of jekyll user
Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
2024-05-22 15:02:31 +02:00

29 lines
515 B
YAML

version: '3'
services:
jekyll:
build:
context: docker/jekyll
args:
uid: "${_UID:-1000}"
gid: "${_GID:-1000}"
volumes:
- .:/home/ubuntu/workspace
working_dir: /home/ubuntu/workspace
ports:
- "4000:4000"
stdin_open: true
tty: true
hostname: jekyll.local
container_name: jekyll.local
networks:
- bridge
deploy:
resources:
limits:
cpus: '1.5'
memory: 512M
networks:
bridge:
external: true