26 lines
605 B
YAML
26 lines
605 B
YAML
version: '3'
|
|
|
|
services:
|
|
openvscode-server:
|
|
container_name: openvscode-server
|
|
image: lscr.io/linuxserver/openvscode-server:latest
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
ports:
|
|
- 3000:3000
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${DOCKERCONFIGS}/openvscode-server/config:/config
|
|
|
|
homarr:
|
|
container_name: homarr
|
|
image: ghcr.io/ajnart/homarr:latest
|
|
ports:
|
|
- 7575:7575
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ${DOCKERCONFIGS}/homarr/configs:/app/data/configs
|
|
- ${DOCKERCONFIGS}/homarr/icons:/app/public/icons
|