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.
dc3-web/dc3/docker-compose.yml

29 lines
407 B

version: '3'
5 years ago
services:
web:
build:
context: ../
4 years ago
dockerfile: ./Dockerfile
4 years ago
image: pnoker/dc3-web:1.0.0
5 years ago
restart: always
ports:
4 years ago
- 80:80
5 years ago
- 443:443
5 years ago
container_name: dc3-web
hostname: dc3-web
volumes:
- nginx:/var/log/nginx
5 years ago
networks:
dc3net:
aliases:
5 years ago
- dc3-web
5 years ago
volumes:
nginx:
5 years ago
networks:
dc3net:
driver: 'bridge'
5 years ago
...