Combined changes to get containers working: - Updated to Ubuntu 24.04 LTS - Reset compose network config to known working state - Updated container data loading instructions and script - Changed DB loader to upload all DBs (not just random sample) - Added Lima VM configuration for Docker with full control - Improved job submission to running compose setup
33 lines
569 B
YAML
33 lines
569 B
YAML
# ubu-docker.yaml
|
|
arch: "aarch64"
|
|
cpus: 4
|
|
memory: "32GiB"
|
|
disk: "64GiB"
|
|
|
|
images:
|
|
- location: "https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-arm64.img"
|
|
arch: "aarch64"
|
|
|
|
mounts:
|
|
- location: "/Users/hohn"
|
|
writable: true
|
|
|
|
provision:
|
|
- mode: system
|
|
script: |
|
|
apt-get update
|
|
apt-get install -y docker.io docker-compose tcpdump iproute2 net-tools
|
|
usermod -aG docker ubuntu
|
|
|
|
ssh:
|
|
localPort: 0
|
|
|
|
containerd:
|
|
system: false
|
|
user: false
|
|
|
|
firmware:
|
|
legacyBIOS: false
|
|
|
|
|