Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/68 Co-authored-by: Renovate Bot <renovate-bot@gitea.com> Co-committed-by: Renovate Bot <renovate-bot@gitea.com>
23 lines
No EOL
411 B
YAML
23 lines
No EOL
411 B
YAML
version: "3"
|
|
|
|
networks:
|
|
gitea:
|
|
external: false
|
|
|
|
services:
|
|
server:
|
|
image: gitea/gitea:1.22.1
|
|
container_name: gitea
|
|
environment:
|
|
- USER_UID=1000
|
|
- USER_GID=1000
|
|
- DISABLE_GIT_HOOKS=false
|
|
restart: always
|
|
networks:
|
|
- gitea
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "3000:3000"
|
|
- "222:22" |