Create docker-compose.yml
Browse files- docker-compose.yml +8 -0
docker-compose.yml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
my-gotty:
|
2 |
+
hostname: mygotty
|
3 |
+
ports:
|
4 |
+
- 8989:8080
|
5 |
+
tty: true
|
6 |
+
image: modenaf360/gotty:latest
|
7 |
+
stdin_open: true
|
8 |
+
tty: true #using bash TTY mode (pseudo-TTY)
|