27 lines
568 B
YAML
27 lines
568 B
YAML
services:
|
|
obsidian:
|
|
image: lscr.io/linuxserver/obsidian:latest
|
|
container_name: obsidian
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
- START_DOCKER=false
|
|
- LC_ALL=en_US.UTF-8
|
|
- NO_DECOR=true
|
|
- TITLE=Obsidian
|
|
networks:
|
|
- reverse-proxy
|
|
ports:
|
|
- 3010:3001
|
|
shm_size: "1gb"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/config:/config
|
|
- ${DOCKER_CONFIGS}/scripts:/custom-cont-init.d:ro
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
name: reverse-proxy
|
|
external: true
|