forked from lamecube/GoAnyWhereServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (50 loc) · 1.12 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
44
45
46
47
48
49
50
version: '3.4'
services:
fileserver:
image: fileserver
build:
context: .
dockerfile: ./fileserver/Dockerfile
hostname: fileserver
networks:
- dmz
ports:
- 443:55443
volumes:
- fs-suite:/home/fileserver
- fs-data:/var/fileserver
link-manager:
image: link-manager
build:
context: .
dockerfile: ./link-manager/Dockerfile
networks:
- isolated
hostname: link-manager
ports:
- 8080:80
volumes:
- fs-suite:/home/fileserver
# certbot:
# image: certbot
# build:
# context: .
# dockerfile: ./certbot/Dockerfile
# ports:
# - 55433:55433
# volumes:
# - fs-suite:/home/node/app
volumes:
fs-suite:
# Recommended to utilize a fast, local volume for DB
fs-data:
# Recommended to attach to NFS/CIFS for this volume
fs-certs:
# PrivKey and PubCert/FullChain location; NFS/CIFS recommended if utilizing host to attain certs
networks:
dmz:
name: custom_dmz
driver: bridge
isolated:
name: custom_isolated
driver: bridge