-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (31 loc) · 887 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (31 loc) · 887 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
services:
vscsync:
image: lolinternet/vscsync:latest
build:
context: ./
dockerfile: ./vscoffline/vscsync/Dockerfile
dns:
- 1.1.1.1
volumes:
- ./artifacts/:/artifacts/
environment:
- SYNCARGS=--sync
# Enable to sync all extensions
#- SYNCARGS=--syncall
# Enable a logfile
#- SYNCARGS=--sync --logfile /logs/sync.log
vscgallery:
image: lolinternet/vscgallery:latest
build:
context: ./
dockerfile: ./vscoffline/vscgallery/Dockerfile
volumes:
- ./artifacts/:/artifacts/
# Enable for custom SSL certs
#- ./vscoffline/vscgallery/ssl/:/opt/vscoffline/vscgallery/ssl # Enable for custom SSL certs
# Enable to store logfiles in its own folder
# ./logs/:/logs/
ports:
- 443:443
environment:
- BIND=0.0.0.0:443