forked from packistry/packistry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
43 lines (43 loc) · 1.16 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
services:
web:
restart: unless-stopped
build:
context: .
target: base
ports:
- '${APP_PORT:-80}:8000'
environment:
PHP_CLI_SERVER_WORKERS: 4
volumes:
- '.:/var/www/html:delegated'
command: 'php artisan serve --host=0.0.0.0'
gitea:
image: gitea/gitea:1.23.3
restart: unless-stopped
environment:
- GITEA__webhook__ALLOWED_HOST_LIST=*
ports:
- '3000:3000'
gogs:
image: gogs/gogs:0.13
restart: unless-stopped
ports:
- '3001:3000'
gitlab:
image: gitlab/gitlab-ce:17.6.4-ce.0
restart: unless-stopped
environment:
GITLAB_OMNIBUS_CONFIG: |
# Add any other gitlab.rb configuration here, each on its own line
external_url 'http://localhost'
ports:
- '3002:80'
volumes:
- 'gitlab-config:/etc/gitlab'
- 'gitlab-logs:/var/log/gitlab'
- 'gitlab-data:/var/opt/gitlab'
shm_size: '256m'
volumes:
gitlab-config:
gitlab-logs:
gitlab-data: