forked from RickStrahl/AlbumViewerVNext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (33 loc) · 734 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (33 loc) · 734 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
35
36
37
38
# Run docker-compose build
# Run docker-compose up
# Live long and prosper
version: '2'
services:
nginx:
container_name: nginxalbumviewer
image: nginxalbumviewer
build:
context: ./nginx
dockerfile: Dockerfile
# volumes:.
# - ./dist:/usr/share/nginx/html
ports:
- "8081:80"
# - "443:443"
networks:
- app-network
aspnet:
container_name: 'westwindalbumviewer'
image: 'westwind/albumviewer:albumviewer'
build:
context: ./src/AlbumViewerNetCore
dockerfile: ./Dockerfile
# volumes:
# - ./src/AlbumViewerNetCore:/var/www/albumviewer
ports:
- "5000:5000"
networks:
- app-network
networks:
app-network:
driver: bridge