mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-25 00:01:02 +00:00
* Update linuxserver/vscodium Docker tag to v1.126.04524 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
28 lines
683 B
YAML
28 lines
683 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
services:
|
|
vscodium:
|
|
image: "linuxserver/vscodium:1.126.04524"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:3000"
|
|
- "${PANEL_APP_PORT_HTTPS}:3001"
|
|
volumes:
|
|
- "${CONFIG_PATH}:/config"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TIME_ZONE}
|
|
- CUSTOM_USER=${CUSTOM_USER}
|
|
- PASSWORD=${PASSWORD}
|
|
- TITLE=${TITLE:-VSCodium}
|
|
- SELKIES_UI_TITLE=${SELKIES_UI_TITLE:-Selkies}
|
|
- DASHBOARD=${DASHBOARD:-selkies-dashboard}
|
|
- LC_ALL=${LC_ALL}
|
|
labels:
|
|
createdBy: "Apps"
|