mirror of https://gitee.com/pnoker/dc3-web.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
410 B
29 lines
410 B
4 years ago
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
web:
|
||
|
build:
|
||
|
context: ../
|
||
|
dockerfile: ./Dockerfile
|
||
|
image: dc3.local/dc3-web:1.0.0
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 80:80
|
||
|
- 443:443
|
||
|
container_name: dc3-web
|
||
|
hostname: dc3-web
|
||
|
volumes:
|
||
|
- nginx:/var/log/nginx
|
||
|
networks:
|
||
|
dc3net:
|
||
|
aliases:
|
||
|
- dc3-web
|
||
|
|
||
|
volumes:
|
||
|
nginx:
|
||
|
|
||
|
networks:
|
||
|
dc3net:
|
||
|
driver: 'bridge'
|
||
|
...
|