Skip to content
Permalink
a4c75e635d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
37 lines (34 sloc) 659 Bytes
version: '3'
services:
web:
image: cueh/6005_moodle-web
#build:
# context: MoodleWeb
ports:
- "80:80"
networks:
- external_network
- internal_network
#restart: always
database:
image: cueh/6005_moodle-db
#build:
# context: DB
environment:
- MYSQL_ROOT_PASSWORD=theMoodleUser
- MYSQL_DATABASE=moodle
networks:
- internal_network
vuln:
image: cueh/6005_moodle-exploit
#build:
# context: Exploit
ports:
- "22:22"
networks:
- external_network
networks:
external_network:
driver: bridge
internal_network:
driver: bridge