39 lines
665 B
YAML
39 lines
665 B
YAML
|
|
|
||
|
|
services:
|
||
|
|
|
||
|
|
shinobi-academy-linux-server:
|
||
|
|
|
||
|
|
container_name: shinobi-academy-linux-public
|
||
|
|
|
||
|
|
image: softwareshinobi/shinobi-academy-linux-server:academy
|
||
|
|
|
||
|
|
build:
|
||
|
|
|
||
|
|
context: servers/academy
|
||
|
|
|
||
|
|
dockerfile: Dockerfile
|
||
|
|
|
||
|
|
hostname: academy
|
||
|
|
|
||
|
|
domainname: linux.softwareshinobi.com
|
||
|
|
|
||
|
|
ports:
|
||
|
|
|
||
|
|
- "2222:22"
|
||
|
|
|
||
|
|
shinobi-academy-linux-landing:
|
||
|
|
|
||
|
|
container_name: shinobi-academy-linux-landing
|
||
|
|
|
||
|
|
image: softwareshinobi/shinobi-academy-linux-server:landing
|
||
|
|
|
||
|
|
build:
|
||
|
|
|
||
|
|
context: landing
|
||
|
|
|
||
|
|
dockerfile: Dockerfile
|
||
|
|
|
||
|
|
ports:
|
||
|
|
|
||
|
|
- 2280:80
|