Files
gitea-themes/compose.dev.yaml
T

23 lines
761 B
YAML

services:
server:
image: docker.gitea.com/gitea:1.26.1
container_name: gitea-theme-dev
environment:
- USER_UID=1000
- USER_GID=1000
- GITEA__server__LANDING_PAGE=explore
- GITEA__service_0x2E_explore__DISABLE_USERS_PAGE=true
- GITEA__service_0x2E_explore__DISABLE_ORGANIZATIONS_PAGE=true
- GITEA__service_0x2E_explore__DISABLE_CODE_PAGE=true
- GITEA__ui__THEMES=github-dev,github-dev-dark
- GITEA__ui__DEFAULT_THEME=github-dev-dark
restart: always
volumes:
- ./.gitea-data:/data
- ./.gitea/custom/public:/data/gitea/public
- ./.gitea/custom/templates:/data/gitea/templates
- ./.gitea/custom/options:/data/gitea/options
ports:
- "3000:3000"
- "222:22"