Update compose file and use local timezone in container.
This commit is contained in:
parent
664b195cf3
commit
a02e3eb569
@ -21,7 +21,7 @@
|
|||||||
// Features to add to the dev container. More info: https://containers.dev/features.
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
||||||
// "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": [],
|
// "forwardPorts": [],
|
||||||
|
|
||||||
// Uncomment the next line if you want start specific services in your Docker Compose config.
|
// Uncomment the next line if you want start specific services in your Docker Compose config.
|
||||||
|
@ -22,5 +22,5 @@ services:
|
|||||||
# - seccomp:unconfined
|
# - seccomp:unconfined
|
||||||
|
|
||||||
# Overrides default command so things don't shut down after the process ends.
|
# Overrides default command so things don't shut down after the process ends.
|
||||||
command: sleep infinity
|
# command: sleep infinity
|
||||||
|
|
||||||
|
@ -1,15 +1,17 @@
|
|||||||
services:
|
services:
|
||||||
build:
|
build:
|
||||||
image: hugomods/hugo:latest
|
image: hugomods/hugo:ci
|
||||||
command: hugo
|
command: hugo
|
||||||
volumes:
|
volumes:
|
||||||
- ".:/src"
|
- ".:/src"
|
||||||
user: 1000:1000
|
user: 1000:1000
|
||||||
server:
|
server:
|
||||||
image: hugomods/hugo:latest
|
image: hugomods/hugo:ci
|
||||||
command: server --buildDrafts --buildFuture
|
command: server --buildDrafts --buildFuture
|
||||||
volumes:
|
volumes:
|
||||||
- ".:/src"
|
- ".:/src"
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:1313:1313"
|
- "127.0.0.1:1313:1313"
|
||||||
user: 1000:1000
|
user: 1000:1000
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
Loading…
Reference in New Issue
Block a user