terraform-provider-gitea/scripts/docker-compose.yaml
Tobias Trabelsi 9aabc45e0b readding install command (#14)
I see that you removed it explicitly in the PR, but i would kindly ask to get it back. helped me a lot with local testing

Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/14
Co-authored-by: Tobias Trabelsi <lerentis@uploadfilter24.eu>
Co-committed-by: Tobias Trabelsi <lerentis@uploadfilter24.eu>
2023-09-07 21:47:00 +00:00

23 lines
411 B
YAML

version: "3"
networks:
gitea:
external: false
services:
server:
image: gitea/gitea:1.19.3
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"