28 lines
820 B
YAML
28 lines
820 B
YAML
networks:
|
|
gitea:
|
|
external: false
|
|
|
|
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=gitea-auto,gitea-light,gitea-dark,banana-modern-auto,banana-modern-light,banana-modern-dark
|
|
- GITEA__ui__DEFAULT_THEME=banana-modern-light
|
|
restart: always
|
|
networks:
|
|
- gitea
|
|
volumes:
|
|
- ./.gitea-data:/data
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "3000:3000"
|
|
- "222:22"
|