-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#126 - Adding docker-compose.yml config file for both of locations. U…
…pdating science_gateway.py to split control and data IPs.
- Loading branch information
Sean Donovan
committed
Nov 16, 2019
1 parent
91adbb4
commit e97ff68
Showing
4 changed files
with
118 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
version: 3.3 | ||
services: | ||
localctlr: | ||
image: lc_container | ||
container_name: localctlr | ||
ports: | ||
- '6633:6633' | ||
volumes: | ||
-/home/sean/atlanticwave-proto:/development:rw | ||
environment: | ||
- MANIFEST=/development/configuration/awave-deployment/awave.manifest | ||
- SITE=mia-ctlr-186-106 | ||
- PYTHONPATH=.:/development | ||
- SDXIP=10.100.1.21 | ||
- AWAVEDIR=/development | ||
|
||
ftpd: | ||
image:metabrains/docker-anon-ftp | ||
ports: | ||
- "10.201.2.28:20-21:20-21" | ||
volumes: | ||
- "/tmp:/var/ftp:ro" | ||
environment: | ||
- FTPD_BANNER=Anonymous FTP Server | ||
|
||
pseudo_dtn: | ||
image: pseudo_dtn | ||
ports: | ||
- SERVERIP=10.100.1.27 | ||
- SERVERPORT=9999 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
version: '3.3' | ||
services: | ||
sdxctlr: | ||
image: sdx_container | ||
container_name: sdxctlr | ||
ports: | ||
- '5000:5000' | ||
- '5555:5555' | ||
volumes: | ||
- /home/sdonovan33/atlanticwave-proto:/development:rw | ||
environment: | ||
- MANIFEST=/development/configuration/awave-deployment/awave.manifest | ||
- IPADDR=0.0.0.0 | ||
- PORT=5000 | ||
- LCPORT=5555 | ||
- PYTHONPATH=.:/development/ | ||
- AWAVEDIR=/development | ||
restart: always | ||
|
||
localctlr: | ||
image: lc_container | ||
container_name: localctlr | ||
ports: | ||
- '6653:6653' | ||
volumes: | ||
- /home/sdonovan33/atlanticwave-proto:/development:rw | ||
environment: | ||
- MANIFEST=/development/configuration/awave-deployment/awave.manifest | ||
- SITE=gt-ctlr-149-223 | ||
- PYTHONPATH=.:/development/ | ||
- SDXIP=sox_sdx_controller | ||
- AWAVEDIR=/development | ||
|
||
ftpd: | ||
image: metabrains/docker-anon-ftp | ||
ports: | ||
- "10.201.2.21:20-21:20-21" | ||
volumes: | ||
- "/tmp:/var/ftp:ro" | ||
environment: | ||
- FTPD_BANNER=Anonymous FTP Server | ||
|
||
pseudo_dtn: | ||
image: pseudo_dtn | ||
ports: | ||
- "10.100.1.21:9999:9999" | ||
environment: | ||
- SERVERIP=10.100.1.21 | ||
- SERVERPORT=9999 | ||
|
||
science_gateway: | ||
image: science_gateway | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
services: | ||
ftpd: | ||
image: metabrainz/docker-anon-ftp | ||
ports: | ||
- "20-21:20-21" | ||
- "65500-65515:65500-65515" | ||
volumes: | ||
- "/tmp:/var/ftp:ro" | ||
environment: | ||
- FTPD_BANNER=Anonymous FTP server | ||
|
||
pseudo_dtn: | ||
image: pseudo_dtn | ||
ports: | ||
- "9999:9999" | ||
environment: | ||
- FTPD_BANNER=Anonymous | ||
- SERVERIP=10.100.100.100 | ||
- SERVERPORT=9999 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters