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

24 lines
348 B

5 years ago
version: '3.3'
5 years ago
services:
web:
build:
context: ../
4 years ago
dockerfile: ./Dockerfile
5 years ago
image: pnoker/dc3-web:3.0
restart: always
ports:
4 years ago
- 8080:80
5 years ago
- 443:443
5 years ago
container_name: dc3-web
hostname: dc3-web
5 years ago
networks:
dc3net:
aliases:
5 years ago
- dc3-web
5 years ago
networks:
dc3net:
driver: 'bridge'
5 years ago
...