From a02e3eb56936cd47fea8f88ba97ebca68081d247 Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Sun, 30 Mar 2025 21:43:19 +0200 Subject: [PATCH] Update compose file and use local timezone in container. --- .devcontainer/devcontainer.json | 2 +- .devcontainer/docker-compose.yml | 2 +- docker-compose.yml | 6 ++++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8c3766b..5d0c383 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -21,7 +21,7 @@ // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, - // Use 'forwardPorts' to make a list of ports inside the container available locally. + // Use 'forwardPorts' to make a list of ports inside the container available locally.> // "forwardPorts": [], // Uncomment the next line if you want start specific services in your Docker Compose config. diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index 482620e..29d4fb6 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -22,5 +22,5 @@ services: # - seccomp:unconfined # Overrides default command so things don't shut down after the process ends. - command: sleep infinity + # command: sleep infinity diff --git a/docker-compose.yml b/docker-compose.yml index f1b78cf..870d824 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,15 +1,17 @@ services: build: - image: hugomods/hugo:latest + image: hugomods/hugo:ci command: hugo volumes: - ".:/src" user: 1000:1000 server: - image: hugomods/hugo:latest + image: hugomods/hugo:ci command: server --buildDrafts --buildFuture volumes: - ".:/src" ports: - "127.0.0.1:1313:1313" user: 1000:1000 + environment: + - TZ=Europe/Berlin