1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| curl -o IntelliJIDEALicenseServer "http://home.ustc.edu.cn/~mmmwhy/86" chmod a+x IntelliJIDEALicenseServer
cat <<EOF>> docker-compose.yaml version: "2" services: IntelliJIDEALicenseServer: image: ubuntu:16.04 restart: always ports: - 1234:1234 volumes: - ./IntelliJIDEALicenseServer:/usr/bin/IntelliJIDEALicenseServer command: IntelliJIDEALicenseServer -p 1234 -u admin EOF
docker-compose up -d
|