1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| version: "3.0" services: code: image: node:17 restart: unless-stopped container_name: code ports: - "8888:8080" volumes: - ./smart_construction:/smart_construction working_dir: /smart_construction/sc-front command: /bin/bash -c " while true; do sleep 1; done" cloud9: image: sapk/cloud9 restart: unless-stopped container_name: cloud9 ports: - "8181:8181" volumes: - ./smart_construction:/workspace command: --auth admin:abc123
|