blob: ab1c529848bf4ff92f27b97622fb1afa91a36611 (
plain)
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
44
45
46
47
|
version: '3'
services:
edaweb:
build:
context: .
dockerfile: Dockerfile
image: jwansek/edaweb
volumes:
- /media/ISOs/:/media/ISOs/
- ./static/:/app/static/
- ./edaweb.conf:/app/edaweb.conf
ports:
- "6969:6969"
networks:
- db-network
- edaweb-net
external_links:
- mariadb:mysql
restart: unless-stopped
homelab-wiki:
build:
context: ./homelab-wiki
dockerfile: Dockerfile
image: jwansek/edawiki
volumes:
- ./homelab-wiki/images:/var/www/html/images
# - ./homelab-wiki/LocalSettings.php:/var/www/html/LocalSettings.php
env_file:
- ./homelab-wiki/wiki.env
ports:
- "6970:80"
networks:
- db-network
- edaweb-net
external_links:
- mariadb:mysql
restart: unless-stopped
networks:
edaweb-net:
external:
name: edaweb-net
db-network:
external:
name: mariadb
|