initial commit

This commit is contained in:
Gianni Carafa
2023-11-01 22:11:27 +01:00
commit 4a0a8d4869
12 changed files with 561 additions and 0 deletions

15
docker-compose.yaml Normal file
View File

@@ -0,0 +1,15 @@
version: '3'
services:
ladder:
build: .
container_name: ladder
#restart: always
command: tail -f /dev/null
#command: ./ladder
environment:
- PORT=2000
- PORT_PROXY=3000
- GODEBUG=netdns=go+4
ports:
- "2000:2000"
- "8080:3000"