mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
25 lines
553 B
YAML
25 lines
553 B
YAML
networks:
|
|
1panel-network:
|
|
external: true
|
|
services:
|
|
github-desktop:
|
|
image: "linuxserver/github-desktop:latest"
|
|
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}
|
|
- LC_ALL=${LC_ALL}
|
|
labels:
|
|
createdBy: "Apps"
|