-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (33 loc) · 877 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (33 loc) · 877 Bytes
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
version: "3.8"
services:
app1:
build:
dockerfile: misc/docker/webapp.dockerfile
image: pkgs-webapp
volumes: [ ./misc/docker/volumes/pkgs-db:/var/db ]
app2:
build:
dockerfile: misc/docker/webapp.dockerfile
image: pkgs-webapp
volumes: [ ./misc/docker/volumes/pkgs-db:/var/db ]
buildlog:
build:
dockerfile: misc/docker/buildlog.dockerfile
image: pkgs-buildlog
volumes:
- ./misc/docker/volumes/pkgs-db:/var/db
queue:
image: redis:alpine
update:
build:
dockerfile: misc/docker/update.dockerfile
image: pkgs-update
volumes:
- ./misc/docker/volumes/pkgs-db:/var/db
- ./static:/var/www/pkgs.void/static
webserver:
image: sebp/lighttpd
ports: [ "7547:80" ]
volumes:
- ./misc/docker/volumes/webserver-cfg:/etc/lighttpd
- ./static:/var/www/pkgs.void/static