gitlab_ce/compose.yml
Jason Rothstein b01c14dc40
Fedora 39 with Podman Compose update
Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
2024-03-24 22:25:12 -05:00

24 lines
433 B
YAML

networks:
gitlab_ce:
external: false
services:
gitlab_ce:
image: gitlab/gitlab-ce:latest
networks:
gitlab_ce: null
ports:
- 80:80/tcp
- 443:443/tcp
- 2222:22/tcp
restart: always
volumes:
- gitlab_config:/etc/gita:rw
- gitlab_logs:/var/log/gitlab:rw
- gitlab_data:/var/opt/gitlab:rw
version: "2.0"
volumes:
gitlab_config: {}
gitlab_data: {}
gitlab_logs: {}