website/docker-compose.yml
Benjamin Bach 95ad580bb8
All checks were successful
continuous-integration/drone/pr Build is passing
Remove redundant build service
2021-05-04 22:30:06 +02:00

19 lines
262 B
YAML

version: "3"
services:
serve:
build:
context: .
dockerfile: Dockerfile_hugo
command: |
/bin/bash -c "
cd /code
hugo serve
"
ports:
- "1313:1313"
network_mode: "host"
volumes:
- .:/code