19 lines
315 B
YAML
19 lines
315 B
YAML
services:
|
|
apache2:
|
|
build: ./
|
|
image: apache2
|
|
container_name: apache2
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./www:/var/www/html/
|
|
- /opt/safetech:/opt/safetech
|
|
ports:
|
|
- 7080:80
|
|
- 7081:443
|
|
networks:
|
|
- fatbluefish
|
|
networks:
|
|
fatbluefish:
|
|
external: true
|
|
|