-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
51 lines (45 loc) · 1.25 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
51
version: '3.8'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
ports:
# These ports are in format <host-port>:<container-port>
- '80:80' # Public HTTP Port
- '443:443' # Public HTTPS Port
- '81:81' # Admin Web Port
# Add any other Stream port you want to expose
# - '21:21' # FTP
# Uncomment the next line if you uncomment anything in the section
# environment:
# Uncomment this if you want to change the location of
# the SQLite DB file within the container
# DB_SQLITE_FILE: "/data/database.sqlite"
# Uncomment this if IPv6 is not enabled on your host
# DISABLE_IPV6: 'true'
volumes:
- ./data:/data
- /etc/letsencrypt:/etc/letsencrypt
# Test server
back:
build: .
ports:
- '8001:8001'
volumes:
- ./back/src/scripts:/app/back/src/scripts
- /etc/letsencrypt:/etc/letsencrypt
restart: unless-stopped
# Obby parkour
back2:
build: .
environment:
- GAME_SCRIPT=parkourScript.js
ports:
- '8002:8001'
volumes:
- ./back/src/scripts:/app/back/src/scripts
- /etc/letsencrypt:/etc/letsencrypt
restart: unless-stopped
networks:
my_network:
driver: bridge