Skip to content
Author: Tianle Yuan

Run container by using docker compse⚓︎

Step 1. Create a docker-compose.yml file⚓︎

docker-compose.yml
services:
  dev:
    image: "swiftlang/swift:nightly-focal" #Default setting package for your system
    volumes:
      - /Users/<YOUR_DIC_TO_INSTALL_SWIFT>/swift:/code
    environment:
      - USER=<YOUR_NAME>

Step 2. Launch the dev Docker service created in Step 2⚓︎

Turn on your Docker Desktop. Then run the code below.

Once inside your docker container, cd code. From \code directory you can run the swift command.

Git Bash
docker-compose run --rm dev

Last update: December 4, 2022 05:57:23
Created: November 12, 2022 08:13:32

Comments